Class: Aws::CloudWatchLogs::Types::OutputLogEvent

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudwatchlogs/types.rb

Overview

Represents a log event.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ingestion_timeInteger

The time the event was ingested, expressed as the number of milliseconds after ‘Jan 1, 1970 00:00:00 UTC`.

Returns:

  • (Integer)


3429
3430
3431
3432
3433
3434
3435
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 3429

class OutputLogEvent < Struct.new(
  :timestamp,
  :message,
  :ingestion_time)
  SENSITIVE = []
  include Aws::Structure
end

#messageString

The data contained in the log event.

Returns:

  • (String)


3429
3430
3431
3432
3433
3434
3435
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 3429

class OutputLogEvent < Struct.new(
  :timestamp,
  :message,
  :ingestion_time)
  SENSITIVE = []
  include Aws::Structure
end

#timestampInteger

The time the event occurred, expressed as the number of milliseconds after ‘Jan 1, 1970 00:00:00 UTC`.

Returns:

  • (Integer)


3429
3430
3431
3432
3433
3434
3435
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 3429

class OutputLogEvent < Struct.new(
  :timestamp,
  :message,
  :ingestion_time)
  SENSITIVE = []
  include Aws::Structure
end