Interface CfnAppInstanceBot.ConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppInstanceBot.ConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAppInstanceBot
@Stability(Stable)
public static interface CfnAppInstanceBot.ConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
A structure that contains configuration data.
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.*;
ConfigurationProperty configurationProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAppInstanceBot.ConfigurationPropertystatic final classAn implementation forCfnAppInstanceBot.ConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLex
The configuration for an Amazon Lex V2 bot.Returns union: either
IResolvableorCfnAppInstanceBot.LexConfigurationProperty- See Also:
-
builder
-