interface TranscriptConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnDataAutomationProjectPropsMixin.TranscriptConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnDataAutomationProjectPropsMixin_TranscriptConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnDataAutomationProjectPropsMixin.TranscriptConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnDataAutomationProjectPropsMixin.TranscriptConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnDataAutomationProjectPropsMixin » TranscriptConfigurationProperty |
Configuration for transcript options.
This option allows you to enable speaker labeling and channel labeling.
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 transcriptConfigurationProperty: bedrock.CfnDataAutomationProjectPropsMixin.TranscriptConfigurationProperty = {
channelLabeling: {
state: 'state',
},
speakerLabeling: {
state: 'state',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | IResolvable | Channel | Enables channel labeling. |
| speaker | IResolvable | Speaker | Enables speaker labeling. |
channelLabeling?
Type:
IResolvable | Channel
(optional)
Enables channel labeling.
Each audio channel will be labeled with a number, and the transcript will indicate which channel is being used.
speakerLabeling?
Type:
IResolvable | Speaker
(optional)
Enables speaker labeling.
Each speaker within a transcript will recieve a number, and the transcript will note which speaker is talking.

.NET
Go
Java
Python
TypeScript