Interface CfnDataAutomationProject.TranscriptConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataAutomationProject.TranscriptConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataAutomationProject
@Stability(Stable)
public static interface CfnDataAutomationProject.TranscriptConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrock.*;
TranscriptConfigurationProperty transcriptConfigurationProperty = TranscriptConfigurationProperty.builder()
.channelLabeling(ChannelLabelingConfigurationProperty.builder()
.state("state")
.build())
.speakerLabeling(SpeakerLabelingConfigurationProperty.builder()
.state("state")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataAutomationProject.TranscriptConfigurationPropertystatic final classAn implementation forCfnDataAutomationProject.TranscriptConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChannelLabeling
Enables channel labeling.Each audio channel will be labeled with a number, and the transcript will indicate which channel is being used.
Returns union: either
IResolvableorCfnDataAutomationProject.ChannelLabelingConfigurationProperty- See Also:
-
getSpeakerLabeling
Enables speaker labeling.Each speaker within a transcript will recieve a number, and the transcript will note which speaker is talking.
Returns union: either
IResolvableorCfnDataAutomationProject.SpeakerLabelingConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnDataAutomationProject.TranscriptConfigurationProperty.Builder builder()
-