interface BlueprintReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Bedrock.BlueprintReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbedrock#BlueprintReference |
Java | software.amazon.awscdk.interfaces.bedrock.BlueprintReference |
Python | aws_cdk.interfaces.aws_bedrock.BlueprintReference |
TypeScript | aws-cdk-lib » interfaces » aws_bedrock » BlueprintReference |
A reference to a Blueprint resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as interfaces_aws_bedrock } from 'aws-cdk-lib/interfaces';
const blueprintReference: interfaces_aws_bedrock.BlueprintReference = {
blueprintArn: 'blueprintArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| blueprint | string | The BlueprintArn of the Blueprint resource. |
blueprintArn
Type:
string
The BlueprintArn of the Blueprint resource.

.NET
Go
Java
Python
TypeScript