Interface CfnDataAutomationProject.StandardOutputConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataAutomationProject.StandardOutputConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataAutomationProject
@Stability(Stable)
public static interface CfnDataAutomationProject.StandardOutputConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The project's standard output configuration.
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.*;
StandardOutputConfigurationProperty standardOutputConfigurationProperty = StandardOutputConfigurationProperty.builder()
.audio(AudioStandardOutputConfigurationProperty.builder()
.extraction(AudioStandardExtractionProperty.builder()
.category(AudioExtractionCategoryProperty.builder()
.state("state")
// the properties below are optional
.typeConfiguration(AudioExtractionCategoryTypeConfigurationProperty.builder()
.transcript(TranscriptConfigurationProperty.builder()
.channelLabeling(ChannelLabelingConfigurationProperty.builder()
.state("state")
.build())
.speakerLabeling(SpeakerLabelingConfigurationProperty.builder()
.state("state")
.build())
.build())
.build())
.types(List.of("types"))
.build())
.build())
.generativeField(AudioStandardGenerativeFieldProperty.builder()
.state("state")
// the properties below are optional
.types(List.of("types"))
.build())
.build())
.document(DocumentStandardOutputConfigurationProperty.builder()
.extraction(DocumentStandardExtractionProperty.builder()
.boundingBox(DocumentBoundingBoxProperty.builder()
.state("state")
.build())
.granularity(DocumentExtractionGranularityProperty.builder()
.types(List.of("types"))
.build())
.build())
.generativeField(DocumentStandardGenerativeFieldProperty.builder()
.state("state")
.build())
.outputFormat(DocumentOutputFormatProperty.builder()
.additionalFileFormat(DocumentOutputAdditionalFileFormatProperty.builder()
.state("state")
.build())
.textFormat(DocumentOutputTextFormatProperty.builder()
.types(List.of("types"))
.build())
.build())
.build())
.image(ImageStandardOutputConfigurationProperty.builder()
.extraction(ImageStandardExtractionProperty.builder()
.boundingBox(ImageBoundingBoxProperty.builder()
.state("state")
.build())
.category(ImageExtractionCategoryProperty.builder()
.state("state")
// the properties below are optional
.types(List.of("types"))
.build())
.build())
.generativeField(ImageStandardGenerativeFieldProperty.builder()
.state("state")
// the properties below are optional
.types(List.of("types"))
.build())
.build())
.video(VideoStandardOutputConfigurationProperty.builder()
.extraction(VideoStandardExtractionProperty.builder()
.boundingBox(VideoBoundingBoxProperty.builder()
.state("state")
.build())
.category(VideoExtractionCategoryProperty.builder()
.state("state")
// the properties below are optional
.types(List.of("types"))
.build())
.build())
.generativeField(VideoStandardGenerativeFieldProperty.builder()
.state("state")
// the properties below are optional
.types(List.of("types"))
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataAutomationProject.StandardOutputConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAudio
Settings for processing audio.Returns union: either
IResolvableorCfnDataAutomationProject.AudioStandardOutputConfigurationProperty- See Also:
-
getDocument
Settings for processing documents.Returns union: either
IResolvableorCfnDataAutomationProject.DocumentStandardOutputConfigurationProperty- See Also:
-
getImage
Settings for processing images.Returns union: either
IResolvableorCfnDataAutomationProject.ImageStandardOutputConfigurationProperty- See Also:
-
getVideo
Settings for processing video.Returns union: either
IResolvableorCfnDataAutomationProject.VideoStandardOutputConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnDataAutomationProject.StandardOutputConfigurationProperty.Builder builder()
-