interface CfnBotMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotMixinProps |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotMixinProps |
Properties for CfnBotPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-bot.html
Example
// The generated example for this type would exceed 500 lines,
// and has been elided for readability.
Properties
| Name | Type | Description |
|---|---|---|
| auto | boolean | IResolvable | Indicates whether Amazon Lex V2 should automatically build the locales for the bot after a change. |
| bot | IResolvable | S3 | The Amazon S3 location of files used to import a bot. |
| bot | IResolvable | (IResolvable | Bot)[] | A list of locales for the bot. |
| bot | IResolvable | (IResolvable | Cfn)[] | A list of tags to add to the bot. |
| data | any | By default, data stored by Amazon Lex is encrypted. |
| description? | string | The description of the version. |
| error | IResolvable | Error | |
| idle | number | The time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot. |
| name? | string | The name of the bot locale. |
| replication? | IResolvable | Replication | |
| role | string | The Amazon Resource Name (ARN) of the IAM role used to build and run the bot. |
| test | IResolvable | Test | Specifies configuration settings for the alias used to test the bot. |
| test | IResolvable | (IResolvable | Cfn)[] | A list of tags to add to the test alias for a bot. |
autoBuildBotLocales?
Type:
boolean | IResolvable
(optional)
Indicates whether Amazon Lex V2 should automatically build the locales for the bot after a change.
botFileS3Location?
Type:
IResolvable | S3
(optional)
The Amazon S3 location of files used to import a bot.
The files must be in the import format specified in JSON format for importing and exporting in the Amazon Lex developer guide.
botLocales?
Type:
IResolvable | (IResolvable | Bot)[]
(optional)
A list of locales for the bot.
botTags?
Type:
IResolvable | (IResolvable | Cfn)[]
(optional)
A list of tags to add to the bot.
You can only add tags when you import a bot. You can't use the UpdateBot operation to update tags. To update tags, use the TagResource operation.
dataPrivacy?
Type:
any
(optional)
By default, data stored by Amazon Lex is encrypted.
The DataPrivacy structure provides settings that determine how Amazon Lex handles special cases of securing the data for your bot.
description?
Type:
string
(optional)
The description of the version.
errorLogSettings?
Type:
IResolvable | Error
(optional)
idleSessionTtlInSeconds?
Type:
number
(optional)
The time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot.
A user interaction remains active for the amount of time specified. If no conversation occurs during this time, the session expires and Amazon Lex deletes any data provided before the timeout.
You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
name?
Type:
string
(optional)
The name of the bot locale.
replication?
Type:
IResolvable | Replication
(optional)
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM role used to build and run the bot.
testBotAliasSettings?
Type:
IResolvable | Test
(optional)
Specifies configuration settings for the alias used to test the bot.
If the TestBotAliasSettings property is not specified, the settings are configured with default values.
testBotAliasTags?
Type:
IResolvable | (IResolvable | Cfn)[]
(optional)
A list of tags to add to the test alias for a bot.
You can only add tags when you import a bot. You can't use the UpdateAlias operation to update tags. To update tags on the test alias, use the TagResource operation.

.NET
Go
Java
Python
TypeScript