Show / Hide Table of Contents

Class CfnPrompt.PromptMetadataEntryProperty

Contains a key-value pair that defines a metadata tag and value to attach to a prompt variant.

Inheritance
object
CfnPrompt.PromptMetadataEntryProperty
Implements
CfnPrompt.IPromptMetadataEntryProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPrompt.PromptMetadataEntryProperty : CfnPrompt.IPromptMetadataEntryProperty
Syntax (vb)
Public Class CfnPrompt.PromptMetadataEntryProperty Implements CfnPrompt.IPromptMetadataEntryProperty
Remarks

For more information, see Create a prompt using Prompt management .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptmetadataentry.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.AWS.Bedrock;

             var promptMetadataEntryProperty = new PromptMetadataEntryProperty {
                 Key = "key",
                 Value = "value"
             };

Synopsis

Constructors

PromptMetadataEntryProperty()

Contains a key-value pair that defines a metadata tag and value to attach to a prompt variant.

Properties

Key

The key of a metadata tag for a prompt variant.

Value

The value of a metadata tag for a prompt variant.

Constructors

PromptMetadataEntryProperty()

Contains a key-value pair that defines a metadata tag and value to attach to a prompt variant.

public PromptMetadataEntryProperty()
Remarks

For more information, see Create a prompt using Prompt management .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptmetadataentry.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.AWS.Bedrock;

             var promptMetadataEntryProperty = new PromptMetadataEntryProperty {
                 Key = "key",
                 Value = "value"
             };

Properties

Key

The key of a metadata tag for a prompt variant.

public string Key { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptmetadataentry.html#cfn-bedrock-prompt-promptmetadataentry-key

Value

The value of a metadata tag for a prompt variant.

public string Value { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptmetadataentry.html#cfn-bedrock-prompt-promptmetadataentry-value

Implements

CfnPrompt.IPromptMetadataEntryProperty
Back to top Generated by DocFX