Class: Aws::LexModelBuildingService::Types::GetBotRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::GetBotRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Note:
When making an API call, you may pass GetBotRequest data as a hash:
{
name: "BotName", # required
version_or_alias: "String", # required
}
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the bot.
-
#version_or_alias ⇒ String
The version or alias of the bot.
Instance Attribute Details
#name ⇒ String
The name of the bot. The name is case sensitive.
1219 1220 1221 1222 1223 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1219 class GetBotRequest < Struct.new( :name, :version_or_alias) include Aws::Structure end |
#version_or_alias ⇒ String
The version or alias of the bot.
1219 1220 1221 1222 1223 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1219 class GetBotRequest < Struct.new( :name, :version_or_alias) include Aws::Structure end |