interface AudioStandardOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnDataAutomationProject.AudioStandardOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_AudioStandardOutputConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.AudioStandardOutputConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.AudioStandardOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » AudioStandardOutputConfigurationProperty |
Output settings for processing audio.
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 audioStandardOutputConfigurationProperty: bedrock.CfnDataAutomationProject.AudioStandardOutputConfigurationProperty = {
extraction: {
category: {
state: 'state',
// the properties below are optional
typeConfiguration: {
transcript: {
channelLabeling: {
state: 'state',
},
speakerLabeling: {
state: 'state',
},
},
},
types: ['types'],
},
},
generativeField: {
state: 'state',
// the properties below are optional
types: ['types'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| extraction? | IResolvable | Audio | Settings for populating data fields that describe the audio. |
| generative | IResolvable | Audio | Whether to generate descriptions of the data. |
extraction?
Type:
IResolvable | Audio
(optional)
Settings for populating data fields that describe the audio.
generativeField?
Type:
IResolvable | Audio
(optional)
Whether to generate descriptions of the data.

.NET
Go
Java
Python
TypeScript