interface AudioSegmentationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnKnowledgeBase.AudioSegmentationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnKnowledgeBase_AudioSegmentationConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnKnowledgeBase.AudioSegmentationConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnKnowledgeBase.AudioSegmentationConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnKnowledgeBase » AudioSegmentationConfigurationProperty |
Configuration for segmenting audio content during multimodal knowledge base ingestion.
Determines how audio 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 audioSegmentationConfigurationProperty: bedrock.CfnKnowledgeBase.AudioSegmentationConfigurationProperty = {
fixedLengthDuration: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| fixed | number | The duration in seconds for each audio segment. |
fixedLengthDuration
Type:
number
The duration in seconds for each audio segment.
Audio files will be divided into chunks of this length for processing.

.NET
Go
Java
Python
TypeScript