interface ChannelLabelingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataAutomationProjectPropsMixin.ChannelLabelingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataAutomationProjectPropsMixin_ChannelLabelingConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataAutomationProjectPropsMixin.ChannelLabelingConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataAutomationProjectPropsMixin.ChannelLabelingConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnDataAutomationProjectPropsMixin » ChannelLabelingConfigurationProperty |
Enables or disables channel labeling.
Channel labeling, when enabled will assign a number to each audio channel, and indicate which channel is being used in each portion of the transcript. This appears in the response as "ch_0" for the first channel, and "ch_1" for the second.
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 channelLabelingConfigurationProperty: bedrock_mixins.CfnDataAutomationProjectPropsMixin.ChannelLabelingConfigurationProperty = {
state: 'state',
};
Properties
| Name | Type | Description |
|---|---|---|
| state? | string | State of channel labeling, either enabled or disabled. |
state?
Type:
string
(optional)
State of channel labeling, either enabled or disabled.

.NET
Go
Java
Python
TypeScript