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: