interface AudioExtractionCategoryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataAutomationProjectPropsMixin.AudioExtractionCategoryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataAutomationProjectPropsMixin_AudioExtractionCategoryProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataAutomationProjectPropsMixin.AudioExtractionCategoryProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataAutomationProjectPropsMixin.AudioExtractionCategoryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnDataAutomationProjectPropsMixin » AudioExtractionCategoryProperty |
Settings for generating data from audio.
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 audioExtractionCategoryProperty: bedrock_mixins.CfnDataAutomationProjectPropsMixin.AudioExtractionCategoryProperty = {
state: 'state',
typeConfiguration: {
transcript: {
channelLabeling: {
state: 'state',
},
speakerLabeling: {
state: 'state',
},
},
},
types: ['types'],
};
Properties
| Name | Type | Description |
|---|---|---|
| state? | string | Whether generating categorical data from audio is enabled. |
| type | IResolvable | Audio | This element contains information about extractions from different types. |
| types? | string[] | The types of data to generate. |
state?
Type:
string
(optional)
Whether generating categorical data from audio is enabled.
typeConfiguration?
Type:
IResolvable | Audio
(optional)
This element contains information about extractions from different types.
Used to enable speaker and channel labeling for transcripts.
types?
Type:
string[]
(optional)
The types of data to generate.

.NET
Go
Java
Python
TypeScript