Interface ImageSource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ImageSource.Builder,ImageSource>,SdkBuilder<ImageSource.Builder,ImageSource>,SdkPojo
- Enclosing class:
- ImageSource
@Mutable @NotThreadSafe public static interface ImageSource.Builder extends SdkPojo, CopyableBuilder<ImageSource.Builder,ImageSource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImageSource.BuilderpublicUrl(String publicUrl)The public URL that points to the source image.ImageSource.Builders3Uri(String s3Uri)The Amazon S3 URI that points to the source image.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
publicUrl
ImageSource.Builder publicUrl(String publicUrl)
The public URL that points to the source image.
- Parameters:
publicUrl- The public URL that points to the source image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Uri
ImageSource.Builder s3Uri(String s3Uri)
The Amazon S3 URI that points to the source image.
- Parameters:
s3Uri- The Amazon S3 URI that points to the source image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-