Interface CfnDataAutomationProject.OverrideConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataAutomationProject.OverrideConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataAutomationProject
@Stability(Stable)
public static interface CfnDataAutomationProject.OverrideConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Additional settings for a project.
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.*;
OverrideConfigurationProperty overrideConfigurationProperty = OverrideConfigurationProperty.builder()
.audio(AudioOverrideConfigurationProperty.builder()
.modalityProcessing(ModalityProcessingConfigurationProperty.builder()
.state("state")
.build())
.build())
.document(DocumentOverrideConfigurationProperty.builder()
.modalityProcessing(ModalityProcessingConfigurationProperty.builder()
.state("state")
.build())
.splitter(SplitterConfigurationProperty.builder()
.state("state")
.build())
.build())
.image(ImageOverrideConfigurationProperty.builder()
.modalityProcessing(ModalityProcessingConfigurationProperty.builder()
.state("state")
.build())
.build())
.modalityRouting(ModalityRoutingConfigurationProperty.builder()
.jpeg("jpeg")
.mov("mov")
.mp4("mp4")
.png("png")
.build())
.video(VideoOverrideConfigurationProperty.builder()
.modalityProcessing(ModalityProcessingConfigurationProperty.builder()
.state("state")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataAutomationProject.OverrideConfigurationPropertystatic final classAn implementation forCfnDataAutomationProject.OverrideConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectgetAudio()This element declares whether your project will process audio files.default ObjectAdditional settings for a project.default ObjectgetImage()This element declares whether your project will process image files.default ObjectLets you set which modalities certain file types are processed as.default ObjectgetVideo()This element declares whether your project will process video files.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAudio
This element declares whether your project will process audio files.Returns union: either
IResolvableorCfnDataAutomationProject.AudioOverrideConfigurationProperty- See Also:
-
getDocument
Additional settings for a project.Returns union: either
IResolvableorCfnDataAutomationProject.DocumentOverrideConfigurationProperty- See Also:
-
getImage
This element declares whether your project will process image files.Returns union: either
IResolvableorCfnDataAutomationProject.ImageOverrideConfigurationProperty- See Also:
-
getModalityRouting
Lets you set which modalities certain file types are processed as.Returns union: either
IResolvableorCfnDataAutomationProject.ModalityRoutingConfigurationProperty- See Also:
-
getVideo
This element declares whether your project will process video files.Returns union: either
IResolvableorCfnDataAutomationProject.VideoOverrideConfigurationProperty- See Also:
-
builder
-