Interface CfnAIPromptProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAIPromptProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-25T14:21:25.128Z") @Stability(Stable) public interface CfnAIPromptProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnAIPrompt.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.wisdom.*;
 CfnAIPromptProps cfnAIPromptProps = CfnAIPromptProps.builder()
         .apiFormat("apiFormat")
         .modelId("modelId")
         .templateConfiguration(AIPromptTemplateConfigurationProperty.builder()
                 .textFullAiPromptEditTemplateConfiguration(TextFullAIPromptEditTemplateConfigurationProperty.builder()
                         .text("text")
                         .build())
                 .build())
         .templateType("templateType")
         .type("type")
         // the properties below are optional
         .assistantId("assistantId")
         .description("description")
         .name("name")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 

See Also: