Interface ImageStandardExtraction.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ImageStandardExtraction.Builder,ImageStandardExtraction>,SdkBuilder<ImageStandardExtraction.Builder,ImageStandardExtraction>,SdkPojo
- Enclosing class:
- ImageStandardExtraction
public static interface ImageStandardExtraction.Builder extends SdkPojo, CopyableBuilder<ImageStandardExtraction.Builder,ImageStandardExtraction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ImageStandardExtraction.BuilderboundingBox(Consumer<ImageBoundingBox.Builder> boundingBox)Sets the value of the BoundingBox property for this object.ImageStandardExtraction.BuilderboundingBox(ImageBoundingBox boundingBox)Sets the value of the BoundingBox property for this object.default ImageStandardExtraction.Buildercategory(Consumer<ImageExtractionCategory.Builder> category)Sets the value of the Category property for this object.ImageStandardExtraction.Buildercategory(ImageExtractionCategory category)Sets the value of the Category property for this object.-
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
-
category
ImageStandardExtraction.Builder category(ImageExtractionCategory category)
Sets the value of the Category property for this object.- Parameters:
category- The new value for the Category property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
category
default ImageStandardExtraction.Builder category(Consumer<ImageExtractionCategory.Builder> category)
Sets the value of the Category property for this object. This is a convenience method that creates an instance of theImageExtractionCategory.Builderavoiding the need to create one manually viaImageExtractionCategory.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocategory(ImageExtractionCategory).- Parameters:
category- a consumer that will call methods onImageExtractionCategory.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
category(ImageExtractionCategory)
-
boundingBox
ImageStandardExtraction.Builder boundingBox(ImageBoundingBox boundingBox)
Sets the value of the BoundingBox property for this object.- Parameters:
boundingBox- The new value for the BoundingBox property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
boundingBox
default ImageStandardExtraction.Builder boundingBox(Consumer<ImageBoundingBox.Builder> boundingBox)
Sets the value of the BoundingBox property for this object. This is a convenience method that creates an instance of theImageBoundingBox.Builderavoiding the need to create one manually viaImageBoundingBox.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toboundingBox(ImageBoundingBox).- Parameters:
boundingBox- a consumer that will call methods onImageBoundingBox.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
boundingBox(ImageBoundingBox)
-
-