CfnPromptVersionProps
- class aws_cdk.aws_bedrock.CfnPromptVersionProps(*, prompt_arn, description=None, tags=None)
- Bases: - object- Properties for defining a - CfnPromptVersion.- Parameters:
- prompt_arn ( - str) – The Amazon Resource Name (ARN) of the version of the prompt.
- description ( - Optional[- str]) – The description of the prompt version.
- 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 import aws_bedrock as bedrock cfn_prompt_version_props = bedrock.CfnPromptVersionProps( prompt_arn="promptArn", # the properties below are optional description="description", 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.