Module Values.OperationSummarySource

A complex type that contains information about an operation that matches the criteria that you specified in a ListOperations request.

Sourcetype nonrec t = {
  1. id : OperationId.t option;
    (*

    The ID for an operation.

    *)
  2. status : OperationStatus.t option;
    (*

    The status of the operation. Values include the following: SUBMITTED: This is the initial state immediately after you submit a request. PENDING: Cloud Map is performing the operation. SUCCESS: The operation succeeded. FAIL: The operation failed. For the failure reason, see ErrorMessage.

    *)
}
Sourceval make : ?id:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of OperationId.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