interface TranscriptConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnDataAutomationProject.TranscriptConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_TranscriptConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.TranscriptConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.TranscriptConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » 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-lib';
const transcriptConfigurationProperty: bedrock.CfnDataAutomationProject.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