Class: Aws::LexModelsV2::Types::BotSummary
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LexModelsV2::Types::BotSummary
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lexmodelsv2/types.rb
 
Overview
Summary information about a bot returned by the [ListBots] operation.
[1]: docs.aws.amazon.com/lexv2/latest/APIReference/API_ListBots.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #bot_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier assigned to the bot.
 - 
  
    
      #bot_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the bot.
 - 
  
    
      #bot_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The current status of the bot.
 - 
  
    
      #bot_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the bot.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The description of the bot.
 - 
  
    
      #last_updated_date_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time that the bot was last updated.
 - 
  
    
      #latest_bot_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The latest numerical version in use for the bot.
 
Instance Attribute Details
#bot_id ⇒ String
The unique identifier assigned to the bot. Use this ID to get detailed information about the bot with the [DescribeBot] operation.
[1]: docs.aws.amazon.com/lexv2/latest/APIReference/API_DescribeBot.html
      2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 2620 class BotSummary < Struct.new( :bot_id, :bot_name, :description, :bot_status, :latest_bot_version, :last_updated_date_time, :bot_type) SENSITIVE = [] include Aws::Structure end  | 
  
#bot_name ⇒ String
The name of the bot.
      2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 2620 class BotSummary < Struct.new( :bot_id, :bot_name, :description, :bot_status, :latest_bot_version, :last_updated_date_time, :bot_type) SENSITIVE = [] include Aws::Structure end  | 
  
#bot_status ⇒ String
The current status of the bot. When the status is ‘Available` the bot is ready for use.
      2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 2620 class BotSummary < Struct.new( :bot_id, :bot_name, :description, :bot_status, :latest_bot_version, :last_updated_date_time, :bot_type) SENSITIVE = [] include Aws::Structure end  | 
  
#bot_type ⇒ String
The type of the bot.
      2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 2620 class BotSummary < Struct.new( :bot_id, :bot_name, :description, :bot_status, :latest_bot_version, :last_updated_date_time, :bot_type) SENSITIVE = [] include Aws::Structure end  | 
  
#description ⇒ String
The description of the bot.
      2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 2620 class BotSummary < Struct.new( :bot_id, :bot_name, :description, :bot_status, :latest_bot_version, :last_updated_date_time, :bot_type) SENSITIVE = [] include Aws::Structure end  | 
  
#last_updated_date_time ⇒ Time
The date and time that the bot was last updated.
      2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 2620 class BotSummary < Struct.new( :bot_id, :bot_name, :description, :bot_status, :latest_bot_version, :last_updated_date_time, :bot_type) SENSITIVE = [] include Aws::Structure end  | 
  
#latest_bot_version ⇒ String
The latest numerical version in use for the bot.
      2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 2620 class BotSummary < Struct.new( :bot_id, :bot_name, :description, :bot_status, :latest_bot_version, :last_updated_date_time, :bot_type) SENSITIVE = [] include Aws::Structure end  |