Class: Aws::CloudWatchLogs::Types::InputLogEvent
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::InputLogEvent
- 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
-
#message ⇒ String
The raw event message.
-
#timestamp ⇒ Integer
The time the event occurred, expressed as the number of milliseconds after
Jan 1, 1970 00:00:00 UTC
.
Instance Attribute Details
#message ⇒ String
The raw event message. Each log event can be no larger than 256 KB.
2930 2931 2932 2933 2934 2935 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 2930 class InputLogEvent < Struct.new( :timestamp, :message) 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
.
2930 2931 2932 2933 2934 2935 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 2930 class InputLogEvent < Struct.new( :timestamp, :message) SENSITIVE = [] include Aws::Structure end |