Module Values.StartReplayResponseSource

Starts the specified replay. Events are not necessarily replayed in the exact same order that they were added to the archive. A replay processes events to replay based on the time in the event, and replays them using 1 minute intervals. If you 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.

Sourcetype nonrec t = {
  1. replayArn : ReplayArn.t option;
    (*

    The ARN of the replay.

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

    The state of the replay.

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

    The reason that the replay is in the state.

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

    The time at which the replay started.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalException of InternalException.t
  2. | `InvalidEventPatternException of InvalidEventPatternException.t
  3. | `LimitExceededException of LimitExceededException.t
  4. | `ResourceAlreadyExistsException of ResourceAlreadyExistsException.t
  5. | `ResourceNotFoundException of ResourceNotFoundException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?replayArn:??? -> ?state:??? -> ?stateReason:??? -> ?replayStartTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalException of unit | `InvalidEventPatternException of unit | `LimitExceededException of unit | `ResourceAlreadyExistsException of unit | `ResourceNotFoundException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalException of unit | `InvalidEventPatternException of unit | `LimitExceededException of unit | `ResourceAlreadyExistsException of unit | `ResourceNotFoundException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ReplayArn.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