interface ConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Chime.CfnAppInstanceBotPropsMixin.ConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awschime#CfnAppInstanceBotPropsMixin_ConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.chime.CfnAppInstanceBotPropsMixin.ConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_chime.CfnAppInstanceBotPropsMixin.ConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_chime » CfnAppInstanceBotPropsMixin » ConfigurationProperty |
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 { aws_chime as chime } from '@aws-cdk/cfn-property-mixins';
const configurationProperty: chime.CfnAppInstanceBotPropsMixin.ConfigurationProperty = {
lex: {
invokedBy: {
standardMessages: 'standardMessages',
targetedMessages: 'targetedMessages',
},
lexBotAliasArn: 'lexBotAliasArn',
localeId: 'localeId',
respondsTo: 'respondsTo',
welcomeIntent: 'welcomeIntent',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| lex? | IResolvable | Lex | The configuration for an Amazon Lex V2 bot. |
lex?
Type:
IResolvable | Lex
(optional)
The configuration for an Amazon Lex V2 bot.

.NET
Go
Java
Python
TypeScript