LexModelsV2 / Client / build_bot_locale

build_bot_locale#

LexModelsV2.Client.build_bot_locale(**kwargs)#

Builds a bot, its intents, and its slot types into a specific locale. A bot can be built into multiple locales. At runtime the locale is used to choose a specific build of the bot.

See also: AWS API Documentation

Request Syntax

response = client.build_bot_locale(
    botId='string',
    botVersion='string',
    localeId='string'
)
Parameters:
  • botId (string) –

    [REQUIRED]

    The identifier of the bot to build. The identifier is returned in the response from the CreateBot operation.

  • botVersion (string) –

    [REQUIRED]

    The version of the bot to build. This can only be the draft version of the bot.

  • localeId (string) –

    [REQUIRED]

    The identifier of the language and locale that the bot will be used in. The string must match one of the supported locales. All of the intents, slot types, and slots used in the bot must have the same locale. For more information, see Supported languages.

Return type:

dict

Returns:

Response Syntax

{
    'botId': 'string',
    'botVersion': 'string',
    'localeId': 'string',
    'botLocaleStatus': 'Creating'|'Building'|'Built'|'ReadyExpressTesting'|'Failed'|'Deleting'|'NotBuilt'|'Importing'|'Processing',
    'lastBuildSubmittedDateTime': datetime(2015, 1, 1)
}

Response Structure

  • (dict) –

    • botId (string) –

      The identifier of the specified bot.

    • botVersion (string) –

      The version of the bot that was built. This is only the draft version of the bot.

    • localeId (string) –

      The language and locale specified of where the bot can be used.

    • botLocaleStatus (string) –

      The bot’s build status. When the status is ReadyExpressTesting you can test the bot using the utterances defined for the intents and slot types. When the status is Built, the bot is ready for use and can be tested using any utterance.

    • lastBuildSubmittedDateTime (datetime) –

      A timestamp indicating the date and time that the bot was last built for this locale.

Exceptions

  • LexModelsV2.Client.exceptions.ThrottlingException

  • LexModelsV2.Client.exceptions.ServiceQuotaExceededException

  • LexModelsV2.Client.exceptions.ValidationException

  • LexModelsV2.Client.exceptions.PreconditionFailedException

  • LexModelsV2.Client.exceptions.ConflictException

  • LexModelsV2.Client.exceptions.InternalServerException