Module Values.CancelReplayResponseSource

Cancels the specified replay.

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

    The ARN of the replay to cancel.

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

    The current state of the replay.

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

    The reason that the replay is in the current state.

    *)
}
Sourcetype nonrec error = [
  1. | `ConcurrentModificationException of ConcurrentModificationException.t
  2. | `IllegalStatusException of IllegalStatusException.t
  3. | `InternalException of InternalException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?replayArn:??? -> ?state:??? -> ?stateReason:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ConcurrentModificationException of unit | `IllegalStatusException of unit | `InternalException of unit | `ResourceNotFoundException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ConcurrentModificationException of unit | `IllegalStatusException of unit | `InternalException 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 ]) 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