Class: Aws::CloudWatchLogs::Types::RejectedLogEventsInfo
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CloudWatchLogs::Types::RejectedLogEventsInfo
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cloudwatchlogs/types.rb
 
Overview
Represents the rejected events.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #expired_log_event_end_index  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The expired log events.
 - 
  
    
      #too_new_log_event_start_index  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The index of the first log event that is too new.
 - 
  
    
      #too_old_log_event_end_index  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The index of the last log event that is too old.
 
Instance Attribute Details
#expired_log_event_end_index ⇒ Integer
The expired log events.
      4743 4744 4745 4746 4747 4748 4749  | 
    
      # File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4743 class RejectedLogEventsInfo < Struct.new( :too_new_log_event_start_index, :too_old_log_event_end_index, :expired_log_event_end_index) SENSITIVE = [] include Aws::Structure end  | 
  
#too_new_log_event_start_index ⇒ Integer
The index of the first log event that is too new. This field is inclusive.
      4743 4744 4745 4746 4747 4748 4749  | 
    
      # File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4743 class RejectedLogEventsInfo < Struct.new( :too_new_log_event_start_index, :too_old_log_event_end_index, :expired_log_event_end_index) SENSITIVE = [] include Aws::Structure end  | 
  
#too_old_log_event_end_index ⇒ Integer
The index of the last log event that is too old. This field is exclusive.
      4743 4744 4745 4746 4747 4748 4749  | 
    
      # File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4743 class RejectedLogEventsInfo < Struct.new( :too_new_log_event_start_index, :too_old_log_event_end_index, :expired_log_event_end_index) SENSITIVE = [] include Aws::Structure end  |