interface VideoSegmentationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnKnowledgeBasePropsMixin.VideoSegmentationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnKnowledgeBasePropsMixin_VideoSegmentationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnKnowledgeBasePropsMixin.VideoSegmentationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnKnowledgeBasePropsMixin.VideoSegmentationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const videoSegmentationConfigurationProperty: bedrock_mixins.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