LexModelsV2 / Client / create_bot_version

create_bot_version#

LexModelsV2.Client.create_bot_version(**kwargs)#

Creates an immutable version of the bot. When you create the first version of a bot, Amazon Lex sets the version number to 1. Subsequent bot versions increase in an increment of 1. The version number will always represent the total number of versions created of the bot, not the current number of versions. If a bot version is deleted, that bot version number will not be reused.

See also: AWS API Documentation

Request Syntax

response = client.create_bot_version(
    botId='string',
    description='string',
    botVersionLocaleSpecification={
        'string': {
            'sourceBotVersion': 'string'
        }
    }
)
Parameters:
  • botId (string) –

    [REQUIRED]

    The identifier of the bot to create the version for.

  • description (string) – A description of the version. Use the description to help identify the version in lists.

  • botVersionLocaleSpecification (dict) –

    [REQUIRED]

    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.

    • (string) –

      • (dict) –

        The version of a bot used for a bot locale.

        • sourceBotVersion (string) – [REQUIRED]

          The version of a bot used for a bot locale.

Return type:

dict

Returns:

Response Syntax

{
    'botId': 'string',
    'description': 'string',
    'botVersion': 'string',
    'botVersionLocaleSpecification': {
        'string': {
            'sourceBotVersion': 'string'
        }
    },
    'botStatus': 'Creating'|'Available'|'Inactive'|'Deleting'|'Failed'|'Versioning'|'Importing'|'Updating',
    'creationDateTime': datetime(2015, 1, 1)
}

Response Structure

  • (dict) –

    • botId (string) –

      The bot identifier specified in the request.

    • description (string) –

      The description of the version specified in the request.

    • botVersion (string) –

      The version number assigned to the version.

    • botVersionLocaleSpecification (dict) –

      The source versions used for each locale in the new version.

      • (string) –

        • (dict) –

          The version of a bot used for a bot locale.

          • sourceBotVersion (string) –

            The version of a bot used for a bot locale.

    • botStatus (string) –

      When you send a request to create or update a bot, Amazon Lex sets the status response element to Creating. After Amazon Lex builds the bot, it sets status to Available. If Amazon Lex can’t build the bot, it sets status to Failed.

    • creationDateTime (datetime) –

      A timestamp of the date and time that the version was created.

Exceptions