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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataAutomationProject.CustomOutputConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBlueprints
A list of blueprints.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataAutomationProject.BlueprintItemProperty>- See Also:
-
builder
@Stability(Stable) static CfnDataAutomationProject.CustomOutputConfigurationProperty.Builder builder()
-