Interface CfnPromptPropsMixin.PromptMetadataEntryProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPromptPropsMixin.PromptMetadataEntryProperty.Jsii$Proxy
Enclosing class:
CfnPromptPropsMixin

@Stability(Stable) public static interface CfnPromptPropsMixin.PromptMetadataEntryProperty extends software.amazon.jsii.JsiiSerializable
Contains a key-value pair that defines a metadata tag and value to attach to a prompt variant.

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

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.bedrock.*;
 PromptMetadataEntryProperty promptMetadataEntryProperty = PromptMetadataEntryProperty.builder()
         .key("key")
         .value("value")
         .build();
 

See Also: