interface CfnBotVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotVersionMixinProps |
Properties for CfnBotVersionPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-botversion.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as lex_mixins } from '@aws-cdk/mixins-preview/aws-lex';
const cfnBotVersionMixinProps: lex_mixins.CfnBotVersionMixinProps = {
botId: 'botId',
botVersionLocaleSpecification: [{
botVersionLocaleDetails: {
sourceBotVersion: 'sourceBotVersion',
},
localeId: 'localeId',
}],
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| bot | string | The unique identifier of the bot. |
| bot | IResolvable | (IResolvable | Bot)[] | Specifies the locales that Amazon Lex adds to this version. |
| description? | string | The description of the version. |
botId?
Type:
string
(optional)
The unique identifier of the bot.
botVersionLocaleSpecification?
Type:
IResolvable | (IResolvable | Bot)[]
(optional)
Specifies the locales that Amazon Lex adds to this version.
You can choose the Draft version or any other previously published version for each locale. When you specify a source version, the locale data is copied from the source version to the new version.
description?
Type:
string
(optional)
The description of the version.

.NET
Go
Java
Python
TypeScript