interface SpeakerLabelingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnDataAutomationProject.SpeakerLabelingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_SpeakerLabelingConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.SpeakerLabelingConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.SpeakerLabelingConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » SpeakerLabelingConfigurationProperty |
Enables or disables speaker labeling.
Speaker labeling, when enabled will assign a number to each speaker, and indicate which speaker is talking in each portion of the transcript. This appears in the response as "spk_0" for the first speaker, "spk_1" for the second, and so on for up to 30 speakers.
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 speakerLabelingConfigurationProperty: bedrock.CfnDataAutomationProject.SpeakerLabelingConfigurationProperty = {
state: 'state',
};
Properties
| Name | Type | Description |
|---|---|---|
| state | string | State of speaker labeling, either enabled or disabled. |
state
Type:
string
State of speaker labeling, either enabled or disabled.

.NET
Go
Java
Python
TypeScript