interface AudioStandardOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnDataAutomationProjectPropsMixin.AudioStandardOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnDataAutomationProjectPropsMixin_AudioStandardOutputConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnDataAutomationProjectPropsMixin.AudioStandardOutputConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnDataAutomationProjectPropsMixin.AudioStandardOutputConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnDataAutomationProjectPropsMixin » 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/cfn-property-mixins';
const audioStandardOutputConfigurationProperty: bedrock.CfnDataAutomationProjectPropsMixin.AudioStandardOutputConfigurationProperty = {
extraction: {
category: {
state: 'state',
typeConfiguration: {
transcript: {
channelLabeling: {
state: 'state',
},
speakerLabeling: {
state: 'state',
},
},
},
types: ['types'],
},
},
generativeField: {
state: 'state',
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