interface BlueprintItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnDataAutomationProject.BlueprintItemProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_BlueprintItemProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.BlueprintItemProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.BlueprintItemProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » BlueprintItemProperty |
An abbreviated summary of a blueprint.
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 blueprintItemProperty: bedrock.CfnDataAutomationProject.BlueprintItemProperty = {
blueprintArn: 'blueprintArn',
// the properties below are optional
blueprintStage: 'blueprintStage',
blueprintVersion: 'blueprintVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| blueprint | string | The blueprint's ARN. |
| blueprint | string | The blueprint's stage. |
| blueprint | string | The blueprint's version. |
blueprintArn
Type:
string
The blueprint's ARN.
blueprintStage?
Type:
string
(optional)
The blueprint's stage.
blueprintVersion?
Type:
string
(optional)
The blueprint's version.

.NET
Go
Java
Python
TypeScript