Class: Aws::LexModelsV2::Types::BotAliasHistoryEvent
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LexModelsV2::Types::BotAliasHistoryEvent
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lexmodelsv2/types.rb
 
Overview
Provides a record of an event that affects a bot alias. For example, when the version of a bot that the alias points to changes.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #bot_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The version of the bot that was used in the event.
 - 
  
    
      #end_date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time that the event ended.
 - 
  
    
      #start_date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time that the event started.
 
Instance Attribute Details
#bot_version ⇒ String
The version of the bot that was used in the event.
      1949 1950 1951 1952 1953 1954 1955  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 1949 class BotAliasHistoryEvent < Struct.new( :bot_version, :start_date, :end_date) SENSITIVE = [] include Aws::Structure end  | 
  
#end_date ⇒ Time
The date and time that the event ended.
      1949 1950 1951 1952 1953 1954 1955  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 1949 class BotAliasHistoryEvent < Struct.new( :bot_version, :start_date, :end_date) SENSITIVE = [] include Aws::Structure end  | 
  
#start_date ⇒ Time
The date and time that the event started.
      1949 1950 1951 1952 1953 1954 1955  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 1949 class BotAliasHistoryEvent < Struct.new( :bot_version, :start_date, :end_date) SENSITIVE = [] include Aws::Structure end  |