interface CfnPromptVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnPromptVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnPromptVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnPromptVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnPromptVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const cfnPromptVersionMixinProps: bedrock_mixins.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