Interface CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDataAutomationProject

@Stability(Stable) public static interface CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Allows configuration of extractions for different types of data, such as transcript and content moderation.

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.*;
 AudioExtractionCategoryTypeConfigurationProperty audioExtractionCategoryTypeConfigurationProperty = AudioExtractionCategoryTypeConfigurationProperty.builder()
         .transcript(TranscriptConfigurationProperty.builder()
                 .channelLabeling(ChannelLabelingConfigurationProperty.builder()
                         .state("state")
                         .build())
                 .speakerLabeling(SpeakerLabelingConfigurationProperty.builder()
                         .state("state")
                         .build())
                 .build())
         .build();
 

See Also: