class Amazonite::CloudWatchLogs::InputLogEvent

Overview

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

Included Modules

Defined in:

cloudwatch_logs/input_log_event.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(timestamp : Int64, message : String) #

[View source]
def self.new(pull : JSON::PullParser) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def message : String #

The raw event message. Each log event can be no larger than 1 MB.


[View source]
def message=(message : String) #

The raw event message. Each log event can be no larger than 1 MB.


[View source]
def timestamp : Int64 #

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


[View source]
def timestamp=(timestamp : Int64) #

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


[View source]
def validate! : Nil #

[View source]