interface ChannelLabelingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnDataAutomationProject.ChannelLabelingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_ChannelLabelingConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.ChannelLabelingConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.ChannelLabelingConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » 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 { aws_bedrock as bedrock } from 'aws-cdk-lib';
const channelLabelingConfigurationProperty: bedrock.CfnDataAutomationProject.ChannelLabelingConfigurationProperty = {
state: 'state',
};
Properties
| Name | Type | Description |
|---|---|---|
| state | string | State of channel labeling, either enabled or disabled. |
state
Type:
string
State of channel labeling, either enabled or disabled.

.NET
Go
Java
Python
TypeScript