Interface ImageSet.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ImageSet.Builder,ImageSet>,SdkBuilder<ImageSet.Builder,ImageSet>,SdkPojo
- Enclosing class:
- ImageSet
@Mutable @NotThreadSafe public static interface ImageSet.Builder extends SdkPojo, CopyableBuilder<ImageSet.Builder,ImageSet>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ImageSet.Builderheight32(Consumer<Image.Builder> height32)The image with the height set to 32 pixels.ImageSet.Builderheight32(Image height32)The image with the height set to 32 pixels.default ImageSet.Builderheight64(Consumer<Image.Builder> height64)The image with the height set to 64 pixels.ImageSet.Builderheight64(Image height64)The image with the height set to 64 pixels.default ImageSet.Builderoriginal(Consumer<Image.Builder> original)The original image.ImageSet.Builderoriginal(Image original)The original 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
-
original
ImageSet.Builder original(Image original)
The original image.
- Parameters:
original- The original image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
original
default ImageSet.Builder original(Consumer<Image.Builder> original)
The original image.
This is a convenience method that creates an instance of theImage.Builderavoiding the need to create one manually viaImage.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooriginal(Image).- Parameters:
original- a consumer that will call methods onImage.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
original(Image)
-
height64
ImageSet.Builder height64(Image height64)
The image with the height set to 64 pixels.
- Parameters:
height64- The image with the height set to 64 pixels.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
height64
default ImageSet.Builder height64(Consumer<Image.Builder> height64)
The image with the height set to 64 pixels.
This is a convenience method that creates an instance of theImage.Builderavoiding the need to create one manually viaImage.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toheight64(Image).- Parameters:
height64- a consumer that will call methods onImage.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
height64(Image)
-
height32
ImageSet.Builder height32(Image height32)
The image with the height set to 32 pixels.
- Parameters:
height32- The image with the height set to 32 pixels.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
height32
default ImageSet.Builder height32(Consumer<Image.Builder> height32)
The image with the height set to 32 pixels.
This is a convenience method that creates an instance of theImage.Builderavoiding the need to create one manually viaImage.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toheight32(Image).- Parameters:
height32- a consumer that will call methods onImage.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
height32(Image)
-
-