Class: Aws::CloudWatchLogs::Types::OutputLogEvent
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CloudWatchLogs::Types::OutputLogEvent
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cloudwatchlogs/types.rb
 
Overview
Represents a log event.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #ingestion_time  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time the event was ingested, expressed as the number of milliseconds after ‘Jan 1, 1970 00:00:00 UTC`.
 - 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The data contained in the log event.
 - 
  
    
      #timestamp  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time the event occurred, expressed as the number of milliseconds after ‘Jan 1, 1970 00:00:00 UTC`.
 
Instance Attribute Details
#ingestion_time ⇒ Integer
The time the event was ingested, expressed as the number of milliseconds after ‘Jan 1, 1970 00:00:00 UTC`.
      3691 3692 3693 3694 3695 3696 3697  | 
    
      # File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 3691 class OutputLogEvent < Struct.new( :timestamp, :message, :ingestion_time) SENSITIVE = [] include Aws::Structure end  | 
  
#message ⇒ String
The data contained in the log event.
      3691 3692 3693 3694 3695 3696 3697  | 
    
      # File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 3691 class OutputLogEvent < Struct.new( :timestamp, :message, :ingestion_time) SENSITIVE = [] include Aws::Structure end  | 
  
#timestamp ⇒ Integer
The time the event occurred, expressed as the number of milliseconds after ‘Jan 1, 1970 00:00:00 UTC`.
      3691 3692 3693 3694 3695 3696 3697  | 
    
      # File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 3691 class OutputLogEvent < Struct.new( :timestamp, :message, :ingestion_time) SENSITIVE = [] include Aws::Structure end  |