Module Values.AsyncOperationSource

A container for the information about an asynchronous operation.

Sourcetype nonrec t = {
  1. creationTime : AsyncCreationTimestamp.t option;
    (*

    The time that the request was sent to the service.

    *)
  2. operation : AsyncOperationName.t option;
    (*

    The specific operation for the asynchronous request.

    *)
  3. requestTokenARN : AsyncRequestTokenARN.t option;
    (*

    The request token associated with the request.

    *)
  4. requestParameters : AsyncRequestParameters.t option;
    (*

    The parameters associated with the request.

    *)
  5. requestStatus : AsyncRequestStatus.t option;
    (*

    The current status of the request.

    *)
  6. responseDetails : AsyncResponseDetails.t option;
    (*

    The details of the response.

    *)
}
Sourceval make : ?creationTime:??? -> ?operation:??? -> ?requestTokenARN:??? -> ?requestParameters:??? -> ?requestStatus:??? -> ?responseDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AsyncRequestTokenARN.t | `Structure of (string * [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of BucketName.t ]) list ] list | `String of MultiRegionAccessPointName.t | `Structure of (string * [> `Boolean of Setting.t ]) list ]) list ]) list | `Timestamp of AsyncCreationTimestamp.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