interface CfnBotVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotVersionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotVersionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotVersionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » 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 { aws_lex as lex } from '@aws-cdk/cfn-property-mixins';
const cfnBotVersionMixinProps: lex.CfnBotVersionMixinProps = {
botId: 'botId',
botVersionLocaleSpecification: [{
botVersionLocaleDetails: {
sourceBotVersion: 'sourceBotVersion',
},
localeId: 'localeId',
}],
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| bot | string | IBot | 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 | IBot
(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