CfnBlueprintMixinProps
- class aws_cdk.mixins_preview.aws_bedrock.mixins.CfnBlueprintMixinProps(*, blueprint_name=None, kms_encryption_context=None, kms_key_id=None, schema=None, tags=None, type=None)
Bases:
objectProperties for CfnBlueprintPropsMixin.
- Parameters:
blueprint_name (
Optional[str]) – The blueprint’s name.kms_encryption_context (
Union[Mapping[str,str],IResolvable,None]) – Name-value pairs to include as an encryption context.kms_key_id (
Optional[str]) – The AWS key to use for encryption.schema (
Any) – The blueprint’s schema.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – List of Tags.type (
Optional[str]) – The blueprint’s type.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_bedrock import mixins as bedrock_mixins # schema: Any cfn_blueprint_mixin_props = bedrock_mixins.CfnBlueprintMixinProps( blueprint_name="blueprintName", kms_encryption_context={ "kms_encryption_context_key": "kmsEncryptionContext" }, kms_key_id="kmsKeyId", schema=schema, tags=[CfnTag( key="key", value="value" )], type="type" )
Attributes
- blueprint_name
The blueprint’s name.
- kms_encryption_context
Name-value pairs to include as an encryption context.
- kms_key_id
The AWS key to use for encryption.
- schema
The blueprint’s schema.
- tags
List of Tags.
- type
The blueprint’s type.