interface ConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Chime.CfnAppInstanceBot.ConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awschime#CfnAppInstanceBot_ConfigurationProperty |
Java | software.amazon.awscdk.services.chime.CfnAppInstanceBot.ConfigurationProperty |
Python | aws_cdk.aws_chime.CfnAppInstanceBot.ConfigurationProperty |
TypeScript | aws-cdk-lib » aws_chime » CfnAppInstanceBot » 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-lib';
const configurationProperty: chime.CfnAppInstanceBot.ConfigurationProperty = {
lex: {
lexBotAliasArn: 'lexBotAliasArn',
localeId: 'localeId',
// the properties below are optional
invokedBy: {
standardMessages: 'standardMessages',
targetedMessages: 'targetedMessages',
},
respondsTo: 'respondsTo',
welcomeIntent: 'welcomeIntent',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| lex | IResolvable | Lex | The configuration for an Amazon Lex V2 bot. |
lex
Type:
IResolvable | Lex
The configuration for an Amazon Lex V2 bot.

.NET
Go
Java
Python
TypeScript