Values.ReplaySourceA Replay object that contains details about a replay.
type nonrec t = {replayName : ReplayName.t option;The name of the replay.
*)eventSourceArn : ArchiveArn.t option;The ARN of the archive to replay event from.
*)state : ReplayState.t option;The current state of the replay.
*)stateReason : ReplayStateReason.t option;A description of why the replay is in the current state.
*)eventStartTime : Timestamp.t option;A time stamp for the time to start replaying events. This is determined by the time in the event as described in Time.
*)eventEndTime : Timestamp.t option;A time stamp for the time to start replaying events. Any event with a creation time prior to the EventEndTime specified is replayed.
*)eventLastReplayedTime : Timestamp.t option;A time stamp for the time that the last event was replayed.
*)replayStartTime : Timestamp.t option;A time stamp for the time that the replay started.
*)replayEndTime : Timestamp.t option;A time stamp for the time that the replay completed.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of ReplayName.t
| `Timestamp of Timestamp.t ])
list ]