Interface CfnAgentMixinProps

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

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-08-10T14:51:23.183Z") @Stability(Stable) public interface CfnAgentMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnAgentPropsMixin.

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.*;
 CfnAgentMixinProps cfnAgentMixinProps = CfnAgentMixinProps.builder()
         .actionConnectors(List.of("actionConnectors"))
         .agentId("agentId")
         .agentLifecycle("agentLifecycle")
         .awsAccountId("awsAccountId")
         .customPromptInput(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())
         .description("description")
         .iconId("iconId")
         .name("name")
         .spaces(List.of("spaces"))
         .starterPrompts(List.of("starterPrompts"))
         .tags(List.of(AgentTagProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .welcomeMessage("welcomeMessage")
         .build();
 

See Also: