interface AudioExtractionCategoryTypeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_AudioExtractionCategoryTypeConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » AudioExtractionCategoryTypeConfigurationProperty |
Allows configuration of extractions for different types of data, such as transcript and content moderation.
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 audioExtractionCategoryTypeConfigurationProperty: bedrock.CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty = {
transcript: {
channelLabeling: {
state: 'state',
},
speakerLabeling: {
state: 'state',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| transcript? | IResolvable | Transcript | This element allows you to configure different extractions for your transcript data, such as speaker and channel labeling. |
transcript?
Type:
IResolvable | Transcript
(optional)
This element allows you to configure different extractions for your transcript data, such as speaker and channel labeling.

.NET
Go
Java
Python
TypeScript