Interface VideoStandardExtraction.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<VideoStandardExtraction.Builder,
,VideoStandardExtraction> SdkBuilder<VideoStandardExtraction.Builder,
,VideoStandardExtraction> SdkPojo
- Enclosing class:
VideoStandardExtraction
@Mutable
@NotThreadSafe
public static interface VideoStandardExtraction.Builder
extends SdkPojo, CopyableBuilder<VideoStandardExtraction.Builder,VideoStandardExtraction>
-
Method Summary
Modifier and TypeMethodDescriptiondefault VideoStandardExtraction.Builder
boundingBox
(Consumer<VideoBoundingBox.Builder> boundingBox) Sets the value of the BoundingBox property for this object.boundingBox
(VideoBoundingBox boundingBox) Sets the value of the BoundingBox property for this object.default VideoStandardExtraction.Builder
category
(Consumer<VideoExtractionCategory.Builder> category) Sets the value of the Category property for this object.category
(VideoExtractionCategory 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 VideoStandardExtraction.Builder category(Consumer<VideoExtractionCategory.Builder> category) Sets the value of the Category property for this object. This is a convenience method that creates an instance of theVideoExtractionCategory.Builder
avoiding the need to create one manually viaVideoExtractionCategory.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tocategory(VideoExtractionCategory)
.- Parameters:
category
- a consumer that will call methods onVideoExtractionCategory.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 theVideoBoundingBox.Builder
avoiding the need to create one manually viaVideoBoundingBox.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toboundingBox(VideoBoundingBox)
.- Parameters:
boundingBox
- a consumer that will call methods onVideoBoundingBox.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-