Class: Aws::CloudWatchLogs::Types::InputLogEvent

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

Overview

Represents a log event, which is a record of activity that was recorded by the application or resource being monitored.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

The raw event message. Each log event can be no larger than 256 KB.

Returns:

  • (String)


2663
2664
2665
2666
2667
2668
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 2663

class InputLogEvent < Struct.new(
  :timestamp,
  :message)
  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)


2663
2664
2665
2666
2667
2668
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 2663

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