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
Modifier and TypeMethodDescriptiondefault ImageSet.Builder
height32
(Consumer<Image.Builder> height32) The image with the height set to 32 pixels.The image with the height set to 32 pixels.default ImageSet.Builder
height64
(Consumer<Image.Builder> height64) The image with the height set to 64 pixels.The image with the height set to 64 pixels.default ImageSet.Builder
original
(Consumer<Image.Builder> original) The original image.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 Details
-
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
The original image.
This is a convenience method that creates an instance of theImage.Builder
avoiding the need to create one manually viaImage.builder()
.When the
Consumer
completes,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:
-
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
The image with the height set to 64 pixels.
This is a convenience method that creates an instance of theImage.Builder
avoiding the need to create one manually viaImage.builder()
.When the
Consumer
completes,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:
-
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
The image with the height set to 32 pixels.
This is a convenience method that creates an instance of theImage.Builder
avoiding the need to create one manually viaImage.builder()
.When the
Consumer
completes,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:
-