interface CfnPromptVersionProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_bedrock.CfnPromptVersionProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnPromptVersionProps | 
|  Java | software.amazon.awscdk.services.bedrock.CfnPromptVersionProps | 
|  Python | aws_cdk.aws_bedrock.CfnPromptVersionProps | 
|  TypeScript | aws-cdk-lib»aws_bedrock»CfnPromptVersionProps | 
Properties for defining a CfnPromptVersion.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
const cfnPromptVersionProps: bedrock.CfnPromptVersionProps = {
  promptArn: 'promptArn',
  // the properties below are optional
  description: 'description',
  tags: {
    tagsKey: 'tags',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| prompt | string | The Amazon Resource Name (ARN) of the version of the prompt. | 
| description? | string | The description of the prompt version. | 
| tags? | { [string]: string } | A map of tags attached to the prompt version and their values. | 
promptArn
Type:
string
The Amazon Resource Name (ARN) of the version of the prompt.
description?
Type:
string
(optional)
The description of the prompt version.
tags?
Type:
{ [string]: string }
(optional)
A map of tags attached to the prompt version and their values.
