interface TranscriptConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataAutomationProjectPropsMixin.TranscriptConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataAutomationProjectPropsMixin_TranscriptConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataAutomationProjectPropsMixin.TranscriptConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataAutomationProjectPropsMixin.TranscriptConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const transcriptConfigurationProperty: bedrock_mixins.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