Class CfnPromptVersionMixinProps
Properties for CfnPromptVersionPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnPromptVersionMixinProps : ICfnPromptVersionMixinProps
Syntax (vb)
Public Class CfnPromptVersionMixinProps Implements ICfnPromptVersionMixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var cfnPromptVersionMixinProps = new CfnPromptVersionMixinProps {
Description = "description",
PromptArn = "promptArn",
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};
Synopsis
Constructors
| CfnPromptVersionMixinProps() | Properties for CfnPromptVersionPropsMixin. |
Properties
| Description | The description of the prompt version. |
| PromptArn | The Amazon Resource Name (ARN) of the version of the prompt. |
| Tags | A map of tags attached to the prompt version and their values. |
Constructors
CfnPromptVersionMixinProps()
Properties for CfnPromptVersionPropsMixin.
public CfnPromptVersionMixinProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var cfnPromptVersionMixinProps = new CfnPromptVersionMixinProps {
Description = "description",
PromptArn = "promptArn",
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};
Properties
Description
The description of the prompt version.
public string? Description { get; set; }
Property Value
Remarks
PromptArn
The Amazon Resource Name (ARN) of the version of the prompt.
public string? PromptArn { get; set; }
Property Value
Remarks
Tags
A map of tags attached to the prompt version and their values.
public IDictionary<string, string>? Tags { get; set; }