Module Values.CapacityAllocationSource

Contains the submission time of a single allocation request for a capacity reservation and the most recent status of the attempted allocation.

Sourcetype nonrec t = {
  1. status : CapacityAllocationStatus.t option;
    (*

    The status of the capacity allocation.

    *)
  2. statusMessage : String_.t option;
    (*

    The status message of the capacity allocation.

    *)
  3. requestTime : Timestamp.t option;
    (*

    The time when the capacity allocation was requested.

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

    The time when the capacity allocation request was completed.

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