CfnBotVersionMixinProps
- class aws_cdk.mixins_preview.aws_lex.mixins.CfnBotVersionMixinProps(*, bot_id=None, bot_version_locale_specification=None, description=None)
Bases:
objectProperties for CfnBotVersionPropsMixin.
- Parameters:
bot_id (
Optional[str]) – The unique identifier of the bot.bot_version_locale_specification (
Union[IResolvable,Sequence[Union[IResolvable,BotVersionLocaleSpecificationProperty,Dict[str,Any]]],None]) – 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 (
Optional[str]) – The description of the version.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-botversion.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_lex import mixins as lex_mixins cfn_bot_version_mixin_props = lex_mixins.CfnBotVersionMixinProps( bot_id="botId", bot_version_locale_specification=[lex_mixins.CfnBotVersionPropsMixin.BotVersionLocaleSpecificationProperty( bot_version_locale_details=lex_mixins.CfnBotVersionPropsMixin.BotVersionLocaleDetailsProperty( source_bot_version="sourceBotVersion" ), locale_id="localeId" )], description="description" )
Attributes
- bot_id
The unique identifier of the bot.
- bot_version_locale_specification
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
The description of the version.