interface CfnBlueprintMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnBlueprintMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnBlueprintMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnBlueprintMixinProps |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnBlueprintMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnBlueprintMixinProps |
Properties for CfnBlueprintPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
declare const schema: any;
const cfnBlueprintMixinProps: bedrock_mixins.CfnBlueprintMixinProps = {
blueprintName: 'blueprintName',
kmsEncryptionContext: {
kmsEncryptionContextKey: 'kmsEncryptionContext',
},
kmsKeyId: 'kmsKeyId',
schema: schema,
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| blueprint | string | The blueprint's name. |
| kms | { [string]: string } | IResolvable | Name-value pairs to include as an encryption context. |
| kms | string | The AWS key to use for encryption. |
| schema? | any | The blueprint's schema. |
| tags? | Cfn[] | List of Tags. |
| type? | string | The blueprint's type. |
blueprintName?
Type:
string
(optional)
The blueprint's name.
kmsEncryptionContext?
Type:
{ [string]: string } | IResolvable
(optional)
Name-value pairs to include as an encryption context.
kmsKeyId?
Type:
string
(optional)
The AWS key to use for encryption.
schema?
Type:
any
(optional)
The blueprint's schema.
tags?
Type:
Cfn[]
(optional)
List of Tags.
type?
Type:
string
(optional)
The blueprint's type.

.NET
Go
Java
Python
TypeScript