interface VideoSegmentationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnKnowledgeBasePropsMixin.VideoSegmentationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnKnowledgeBasePropsMixin_VideoSegmentationConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnKnowledgeBasePropsMixin.VideoSegmentationConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnKnowledgeBasePropsMixin.VideoSegmentationConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnKnowledgeBasePropsMixin » VideoSegmentationConfigurationProperty |
Configuration for segmenting video content during multimodal knowledge base ingestion.
Determines how video files are divided into chunks for processing.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const videoSegmentationConfigurationProperty: bedrock.CfnKnowledgeBasePropsMixin.VideoSegmentationConfigurationProperty = {
fixedLengthDuration: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| fixed | number | The duration in seconds for each video segment. |
fixedLengthDuration?
Type:
number
(optional)
The duration in seconds for each video segment.
Video files will be divided into chunks of this length for processing.

.NET
Go
Java
Python
TypeScript