Interface CfnDataAutomationProjectPropsMixin.VideoStandardOutputConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataAutomationProjectPropsMixin.VideoStandardOutputConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataAutomationProjectPropsMixin
@Stability(Stable)
public static interface CfnDataAutomationProjectPropsMixin.VideoStandardOutputConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Output settings for processing video.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.bedrock.*;
VideoStandardOutputConfigurationProperty videoStandardOutputConfigurationProperty = VideoStandardOutputConfigurationProperty.builder()
.extraction(VideoStandardExtractionProperty.builder()
.boundingBox(VideoBoundingBoxProperty.builder()
.state("state")
.build())
.category(VideoExtractionCategoryProperty.builder()
.state("state")
.types(List.of("types"))
.build())
.build())
.generativeField(VideoStandardGenerativeFieldProperty.builder()
.state("state")
.types(List.of("types"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataAutomationProjectPropsMixin.VideoStandardOutputConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExtraction
Settings for populating data fields that describe the video.Returns union: either
IResolvableorCfnDataAutomationProjectPropsMixin.VideoStandardExtractionProperty- See Also:
-
getGenerativeField
Whether to generate descriptions of the video.Returns union: either
IResolvableorCfnDataAutomationProjectPropsMixin.VideoStandardGenerativeFieldProperty- See Also:
-
builder
@Stability(Stable) static CfnDataAutomationProjectPropsMixin.VideoStandardOutputConfigurationProperty.Builder builder()
-