Interface ImageStandardExtraction.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ImageStandardExtraction.Builder,
,ImageStandardExtraction> SdkBuilder<ImageStandardExtraction.Builder,
,ImageStandardExtraction> SdkPojo
- Enclosing class:
ImageStandardExtraction
@Mutable
@NotThreadSafe
public static interface ImageStandardExtraction.Builder
extends SdkPojo, CopyableBuilder<ImageStandardExtraction.Builder,ImageStandardExtraction>
-
Method Summary
Modifier and TypeMethodDescriptiondefault ImageStandardExtraction.Builder
boundingBox
(Consumer<ImageBoundingBox.Builder> boundingBox) Sets the value of the BoundingBox property for this object.boundingBox
(ImageBoundingBox boundingBox) Sets the value of the BoundingBox property for this object.default ImageStandardExtraction.Builder
category
(Consumer<ImageExtractionCategory.Builder> category) Sets the value of the Category property for this object.category
(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 Details
-
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.Builder
avoiding the need to create one manually viaImageExtractionCategory.builder()
.When the
Consumer
completes,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:
-
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
Sets the value of the BoundingBox property for this object. This is a convenience method that creates an instance of theImageBoundingBox.Builder
avoiding the need to create one manually viaImageBoundingBox.builder()
.When the
Consumer
completes,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:
-