interface AudioStandardGenerativeFieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnDataAutomationProject.AudioStandardGenerativeFieldProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_AudioStandardGenerativeFieldProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.AudioStandardGenerativeFieldProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.AudioStandardGenerativeFieldProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » AudioStandardGenerativeFieldProperty |
Settings for generating descriptions of 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 audioStandardGenerativeFieldProperty: bedrock.CfnDataAutomationProject.AudioStandardGenerativeFieldProperty = {
state: 'state',
// the properties below are optional
types: ['types'],
};
Properties
| Name | Type | Description |
|---|---|---|
| state | string | Whether generating descriptions is enabled for audio. |
| types? | string[] | The types of description to generate. |
state
Type:
string
Whether generating descriptions is enabled for audio.
types?
Type:
string[]
(optional)
The types of description to generate.

.NET
Go
Java
Python
TypeScript