Interface CfnAppInstanceBotProps

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

@Generated(value="jsii-pacmak/1.129.0 (build eaca441)", date="2026-05-13T16:55:04.692Z") @Stability(Stable) public interface CfnAppInstanceBotProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnAppInstanceBot.

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.chime.*;
 CfnAppInstanceBotProps cfnAppInstanceBotProps = CfnAppInstanceBotProps.builder()
         .appInstanceArn("appInstanceArn")
         .configuration(ConfigurationProperty.builder()
                 .lex(LexConfigurationProperty.builder()
                         .lexBotAliasArn("lexBotAliasArn")
                         .localeId("localeId")
                         // the properties below are optional
                         .invokedBy(InvokedByProperty.builder()
                                 .standardMessages("standardMessages")
                                 .targetedMessages("targetedMessages")
                                 .build())
                         .respondsTo("respondsTo")
                         .welcomeIntent("welcomeIntent")
                         .build())
                 .build())
         // the properties below are optional
         .metadata("metadata")
         .name("name")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: