interface VideoSegmentationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnKnowledgeBase.VideoSegmentationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnKnowledgeBase_VideoSegmentationConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnKnowledgeBase.VideoSegmentationConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnKnowledgeBase.VideoSegmentationConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnKnowledgeBase » 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-lib';
const videoSegmentationConfigurationProperty: bedrock.CfnKnowledgeBase.VideoSegmentationConfigurationProperty = {
fixedLengthDuration: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| fixed | number | The duration in seconds for each video segment. |
fixedLengthDuration
Type:
number
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