Show / Hide Table of Contents

Class CfnPromptVersionMixinProps

Properties for CfnPromptVersionPropsMixin.

Inheritance
object
CfnPromptVersionMixinProps
Implements
ICfnPromptVersionMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-promptversion.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-promptversion.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-promptversion.html#cfn-bedrock-promptversion-description

PromptArn

The Amazon Resource Name (ARN) of the version of the prompt.

public string? PromptArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-promptversion.html#cfn-bedrock-promptversion-promptarn

Tags

A map of tags attached to the prompt version and their values.

public IDictionary<string, string>? Tags { get; set; }
Property Value

IDictionary<string, string>

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-promptversion.html#cfn-bedrock-promptversion-tags

Implements

ICfnPromptVersionMixinProps
Back to top Generated by DocFX