CfnPromptVersionMixinProps

class aws_cdk.mixins_preview.aws_bedrock.mixins.CfnPromptVersionMixinProps(*, description=None, prompt_arn=None, tags=None)

Bases: object

Properties for CfnPromptVersionPropsMixin.

Parameters:
  • description (Optional[str]) – The description of the prompt version.

  • prompt_arn (Optional[str]) – The Amazon Resource Name (ARN) of the version of the prompt.

  • tags (Optional[Mapping[str, str]]) – A map of tags attached to the prompt version and their values.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-promptversion.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

cfn_prompt_version_mixin_props = bedrock_mixins.CfnPromptVersionMixinProps(
    description="description",
    prompt_arn="promptArn",
    tags={
        "tags_key": "tags"
    }
)

Attributes

description

The description of the prompt version.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-promptversion.html#cfn-bedrock-promptversion-description

prompt_arn

The Amazon Resource Name (ARN) of the version of the prompt.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-promptversion.html#cfn-bedrock-promptversion-promptarn

tags

A map of tags attached to the prompt version and their values.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-promptversion.html#cfn-bedrock-promptversion-tags