interface CfnPromptVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnPromptVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnPromptVersionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnPromptVersionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnPromptVersionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnPromptVersionMixinProps |
Properties for CfnPromptVersionPropsMixin.
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/cfn-property-mixins';
const cfnPromptVersionMixinProps: bedrock.CfnPromptVersionMixinProps = {
description: 'description',
promptArn: 'promptArn',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the prompt version. |
| prompt | string | The Amazon Resource Name (ARN) of the version of the prompt. |
| tags? | { [string]: string } | A map of tags attached to the prompt version and their values. |
description?
Type:
string
(optional)
The description of the prompt version.
promptArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the version of the prompt.
tags?
Type:
{ [string]: string }
(optional)
A map of tags attached to the prompt version and their values.

.NET
Go
Java
Python
TypeScript