Interface CfnKnowledgeBase.VideoConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnKnowledgeBase.VideoConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnKnowledgeBase

@Stability(Stable) public static interface CfnKnowledgeBase.VideoConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration settings for processing video content in multimodal knowledge bases.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.bedrock.*;
 VideoConfigurationProperty videoConfigurationProperty = VideoConfigurationProperty.builder()
         .segmentationConfiguration(VideoSegmentationConfigurationProperty.builder()
                 .fixedLengthDuration(123)
                 .build())
         .build();
 

See Also: