Interface CfnFlowVersionPropsMixin.TextPromptTemplateConfigurationProperty

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

@Stability(Stable) public static interface CfnFlowVersionPropsMixin.TextPromptTemplateConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains configurations for a text prompt template.

To include a variable, enclose a word in double curly braces as in {{variable}} .

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.*;
 TextPromptTemplateConfigurationProperty textPromptTemplateConfigurationProperty = TextPromptTemplateConfigurationProperty.builder()
         .inputVariables(List.of(PromptInputVariableProperty.builder()
                 .name("name")
                 .build()))
         .text("text")
         .build();
 

See Also: