interface SpeakerLabelingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataAutomationProjectPropsMixin.SpeakerLabelingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataAutomationProjectPropsMixin_SpeakerLabelingConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataAutomationProjectPropsMixin.SpeakerLabelingConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataAutomationProjectPropsMixin.SpeakerLabelingConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnDataAutomationProjectPropsMixin » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const speakerLabelingConfigurationProperty: bedrock_mixins.CfnDataAutomationProjectPropsMixin.SpeakerLabelingConfigurationProperty = {
state: 'state',
};
Properties
| Name | Type | Description |
|---|---|---|
| state? | string | State of speaker labeling, either enabled or disabled. |
state?
Type:
string
(optional)
State of speaker labeling, either enabled or disabled.

.NET
Go
Java
Python
TypeScript