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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTranscript
This element allows you to configure different extractions for your transcript data, such as speaker and channel labeling.Returns union: either
IResolvableorCfnDataAutomationProject.TranscriptConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty.Builder builder()
-