CfnPromptVersionMixinProps
- class aws_cdk.mixins_preview.aws_bedrock.mixins.CfnPromptVersionMixinProps(*, description=None, prompt_arn=None, tags=None)
Bases:
objectProperties 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:
- 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.
- prompt_arn
The Amazon Resource Name (ARN) of the version of the prompt.
- tags
A map of tags attached to the prompt version and their values.