interface CfnAppInstanceBotProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Chime.CfnAppInstanceBotProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awschime#CfnAppInstanceBotProps |
Java | software.amazon.awscdk.services.chime.CfnAppInstanceBotProps |
Python | aws_cdk.aws_chime.CfnAppInstanceBotProps |
TypeScript | aws-cdk-lib » aws_chime » CfnAppInstanceBotProps |
Properties for defining a CfnAppInstanceBot.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chime-appinstancebot.html
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 cfnAppInstanceBotProps: chime.CfnAppInstanceBotProps = {
appInstanceArn: 'appInstanceArn',
configuration: {
lex: {
lexBotAliasArn: 'lexBotAliasArn',
localeId: 'localeId',
// the properties below are optional
invokedBy: {
standardMessages: 'standardMessages',
targetedMessages: 'targetedMessages',
},
respondsTo: 'respondsTo',
welcomeIntent: 'welcomeIntent',
},
},
// the properties below are optional
metadata: 'metadata',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | The ARN of the AppInstance. |
| configuration | IResolvable | Configuration | A structure that contains configuration data. |
| metadata? | string | The metadata of the AppInstanceBot. |
| name? | string | The name of the AppInstanceBot. |
| tags? | Cfn[] | The tags assigned to the AppInstanceBot. |
appInstanceArn
Type:
string
The ARN of the AppInstance.
configuration
Type:
IResolvable | Configuration
A structure that contains configuration data.
metadata?
Type:
string
(optional)
The metadata of the AppInstanceBot.
name?
Type:
string
(optional)
The name of the AppInstanceBot.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the AppInstanceBot.

.NET
Go
Java
Python
TypeScript