aws.events.describe_replay
Example SQL Queries
SELECT * FROMaws.events.describe_replayWHERE"replay_name" = 'VALUE';Description
Retrieves details about a replay. Use DescribeReplay to determine the progress of a running replay. A replay processes events to replay based on the time in the event, and replays them using 1 minute intervals. If you use StartReplay and specify an EventStartTime and an EventEndTime that covers a 20 minute time range, the events are replayed from the first minute of that 20 minute range first. Then the events from the second minute are replayed. You can use DescribeReplay to determine the progress of a replay. The value returned for EventLastReplayedTime indicates the time within the specified time range associated with the last event replayed.
Table Definition
| Column Name | Column Data Type |
|---|---|
| replay_name Required Input Column The name of the replay. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| description The description of the replay. | VARCHAR |
| destination A ReplayDestination object that contains details about the replay. | STRUCT( |
Show child fields
| |
| event_end_time The time stamp for the last event that was replayed from the archive. | TIMESTAMP_S |
| event_last_replayed_time The time that the event was last replayed. | TIMESTAMP_S |
| event_source_arn The ARN of the archive events were replayed from. | VARCHAR |
| event_start_time The time stamp of the first event that was last replayed from the archive. | TIMESTAMP_S |
| replay_arn The ARN of the replay. | VARCHAR |
| replay_end_time A time stamp for the time that the replay stopped. | TIMESTAMP_S |
| replay_start_time A time stamp for the time that the replay started. | TIMESTAMP_S |
| state The current state of the replay. | VARCHAR |
| state_reason The reason that the replay is in the current state. | VARCHAR |