class Amazonite::CloudWatchLogs::TriggerHistoryRecord

Overview

A record of a scheduled query execution, including execution status, timestamp, and destination processing results.

Included Modules

Defined in:

cloudwatch_logs/trigger_history_record.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(query_id : String | Nil = nil, execution_status : ExecutionStatus | Nil = nil, triggered_timestamp : Int64 | Nil = nil, error_message : String | Nil = nil, destinations : Array(ScheduledQueryDestination) | Nil = nil) #

[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 destinations : Array(ScheduledQueryDestination) | Nil #

Information about destination processing for this query execution.


[View source]
def destinations=(destinations : Array(ScheduledQueryDestination) | Nil) #

Information about destination processing for this query execution.


[View source]
def error_message : String | Nil #

Error message if the query execution failed.


[View source]
def error_message=(error_message : String | Nil) #

Error message if the query execution failed.


[View source]
def execution_status : ExecutionStatus | Nil #

The execution status of the scheduled query run.


[View source]
def execution_status=(execution_status : ExecutionStatus | Nil) #

The execution status of the scheduled query run.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def query_id : String | Nil #

The unique identifier for this query execution.


[View source]
def query_id=(query_id : String | Nil) #

The unique identifier for this query execution.


[View source]
def triggered_timestamp : Int64 | Nil #

The timestamp when the scheduled query execution was triggered.


[View source]
def triggered_timestamp=(triggered_timestamp : Int64 | Nil) #

The timestamp when the scheduled query execution was triggered.


[View source]
def validate! : Nil #

[View source]