Interface VideoStandardExtraction.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VideoStandardExtraction.Builder,VideoStandardExtraction>,SdkBuilder<VideoStandardExtraction.Builder,VideoStandardExtraction>,SdkPojo
- Enclosing class:
- VideoStandardExtraction
public static interface VideoStandardExtraction.Builder extends SdkPojo, CopyableBuilder<VideoStandardExtraction.Builder,VideoStandardExtraction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default VideoStandardExtraction.BuilderboundingBox(Consumer<VideoBoundingBox.Builder> boundingBox)Sets the value of the BoundingBox property for this object.VideoStandardExtraction.BuilderboundingBox(VideoBoundingBox boundingBox)Sets the value of the BoundingBox property for this object.default VideoStandardExtraction.Buildercategory(Consumer<VideoExtractionCategory.Builder> category)Sets the value of the Category property for this object.VideoStandardExtraction.Buildercategory(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 Detail
-
category
VideoStandardExtraction.Builder category(VideoExtractionCategory 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.Builderavoiding the need to create one manually viaVideoExtractionCategory.builder().When the
Consumercompletes,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:
category(VideoExtractionCategory)
-
boundingBox
VideoStandardExtraction.Builder boundingBox(VideoBoundingBox 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 VideoStandardExtraction.Builder boundingBox(Consumer<VideoBoundingBox.Builder> boundingBox)
Sets the value of the BoundingBox property for this object. This is a convenience method that creates an instance of theVideoBoundingBox.Builderavoiding the need to create one manually viaVideoBoundingBox.builder().When the
Consumercompletes,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:
boundingBox(VideoBoundingBox)
-
-