Interface CfnDataAutomationProject.CustomOutputConfigurationProperty

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

@Stability(Stable) public static interface CfnDataAutomationProject.CustomOutputConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Blueprints to apply to objects processed by the 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.*;
 CustomOutputConfigurationProperty customOutputConfigurationProperty = CustomOutputConfigurationProperty.builder()
         .blueprints(List.of(BlueprintItemProperty.builder()
                 .blueprintArn("blueprintArn")
                 // the properties below are optional
                 .blueprintStage("blueprintStage")
                 .blueprintVersion("blueprintVersion")
                 .build()))
         .build();
 

See Also: