Module Values.ReplaySource

A Replay object that contains details about a replay.

Sourcetype nonrec t = {
  1. replayName : ReplayName.t option;
    (*

    The name of the replay.

    *)
  2. eventSourceArn : ArchiveArn.t option;
    (*

    The ARN of the archive to replay event from.

    *)
  3. state : ReplayState.t option;
    (*

    The current state of the replay.

    *)
  4. stateReason : ReplayStateReason.t option;
    (*

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

    *)
  5. 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.

    *)
  6. 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.

    *)
  7. eventLastReplayedTime : Timestamp.t option;
    (*

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

    *)
  8. replayStartTime : Timestamp.t option;
    (*

    A time stamp for the time that the replay started.

    *)
  9. replayEndTime : Timestamp.t option;
    (*

    A time stamp for the time that the replay completed.

    *)
}
Sourceval make : ?replayName:??? -> ?eventSourceArn:??? -> ?state:??? -> ?stateReason:??? -> ?eventStartTime:??? -> ?eventEndTime:??? -> ?eventLastReplayedTime:??? -> ?replayStartTime:??? -> ?replayEndTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ReplayName.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t