class Amazonite::EventBridge::Replay

Overview

A Replay object that contains details about a replay.

Included Modules

Defined in:

eventbridge/replay.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(replay_name : String | Nil = nil, event_source_arn : String | Nil = nil, state : ReplayState | Nil = nil, state_reason : String | Nil = nil, event_start_time : Time | Nil = nil, event_end_time : Time | Nil = nil, event_last_replayed_time : Time | Nil = nil, replay_start_time : Time | Nil = nil, replay_end_time : Time | Nil = nil) #

[View source]
def self.new(*, __pull_for_json_serializable 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 event_end_time : Time | Nil #

A time stamp for the time to start replaying events. Any event with a creation time prior to the EventEndTime specified is replayed.


[View source]
def event_end_time=(event_end_time : Time | Nil) #

A time stamp for the time to start replaying events. Any event with a creation time prior to the EventEndTime specified is replayed.


[View source]
def event_last_replayed_time : Time | Nil #

A time stamp for the time that the last event was replayed.


[View source]
def event_last_replayed_time=(event_last_replayed_time : Time | Nil) #

A time stamp for the time that the last event was replayed.


[View source]
def event_source_arn : String | Nil #

The ARN of the archive to replay event from.


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

The ARN of the archive to replay event from.


[View source]
def event_start_time : Time | Nil #

A time stamp for the time to start replaying events. This is determined by the time in the event as described in Time.


[View source]
def event_start_time=(event_start_time : Time | Nil) #

A time stamp for the time to start replaying events. This is determined by the time in the event as described in Time.


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

See Object#hash(hasher)


def replay_end_time : Time | Nil #

A time stamp for the time that the replay completed.


[View source]
def replay_end_time=(replay_end_time : Time | Nil) #

A time stamp for the time that the replay completed.


[View source]
def replay_name : String | Nil #

The name of the replay.


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

The name of the replay.


[View source]
def replay_start_time : Time | Nil #

A time stamp for the time that the replay started.


[View source]
def replay_start_time=(replay_start_time : Time | Nil) #

A time stamp for the time that the replay started.


[View source]
def state : ReplayState | Nil #

The current state of the replay.


[View source]
def state=(state : ReplayState | Nil) #

The current state of the replay.


[View source]
def state_reason : String | Nil #

A description of why the replay is in the current state.


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

A description of why the replay is in the current state.


[View source]
def validate! : Nil #

[View source]