Class: Aws::LexModelsV2::Types::BuildBotLocaleRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lexmodelsv2/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bot_idString

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

[1]: docs.aws.amazon.com/lexv2/latest/APIReference/API_CreateBot.html

Returns:

  • (String)


2785
2786
2787
2788
2789
2790
2791
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 2785

class BuildBotLocaleRequest < Struct.new(
  :bot_id,
  :bot_version,
  :locale_id)
  SENSITIVE = []
  include Aws::Structure
end

#bot_versionString

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

Returns:

  • (String)


2785
2786
2787
2788
2789
2790
2791
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 2785

class BuildBotLocaleRequest < Struct.new(
  :bot_id,
  :bot_version,
  :locale_id)
  SENSITIVE = []
  include Aws::Structure
end

#locale_idString

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].

[1]: docs.aws.amazon.com/lexv2/latest/dg/how-languages.html

Returns:

  • (String)


2785
2786
2787
2788
2789
2790
2791
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 2785

class BuildBotLocaleRequest < Struct.new(
  :bot_id,
  :bot_version,
  :locale_id)
  SENSITIVE = []
  include Aws::Structure
end