interface CustomOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnDataAutomationProject.CustomOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_CustomOutputConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.CustomOutputConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.CustomOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » CustomOutputConfigurationProperty |
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 { aws_bedrock as bedrock } from 'aws-cdk-lib';
const customOutputConfigurationProperty: bedrock.CfnDataAutomationProject.CustomOutputConfigurationProperty = {
blueprints: [{
blueprintArn: 'blueprintArn',
// the properties below are optional
blueprintStage: 'blueprintStage',
blueprintVersion: 'blueprintVersion',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| blueprints? | IResolvable | (IResolvable | Blueprint)[] | A list of blueprints. |
blueprints?
Type:
IResolvable | (IResolvable | Blueprint)[]
(optional)
A list of blueprints.

.NET
Go
Java
Python
TypeScript