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()
         .document(DocumentOverrideConfigurationProperty.builder()
                 .splitter(SplitterConfigurationProperty.builder()
                         .state("state")
                         .build())
                 .build())
         .build();
 

See Also: