Interface CfnAgentPropsMixin.CustomPromptInputProperty

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

@Stability(Stable) public static interface CfnAgentPropsMixin.CustomPromptInputProperty extends software.amazon.jsii.JsiiSerializable
Custom prompt configuration.

Specify either ExistingPrompt or NewPrompt.

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.quicksight.*;
 CustomPromptInputProperty customPromptInputProperty = CustomPromptInputProperty.builder()
         .existingPrompt(CustomPromptProfileProperty.builder()
                 .modelProfileId("modelProfileId")
                 .qbsAwsAccountId("qbsAwsAccountId")
                 .subscriptionId("subscriptionId")
                 .build())
         .newPrompt(CustomPromptInputParametersProperty.builder()
                 .customInstructions("customInstructions")
                 .identity("identity")
                 .outputStyle("outputStyle")
                 .responseLength("responseLength")
                 .tone("tone")
                 .build())
         .build();
 

See Also: