Module Values_1.CapacityReservationStatusSource

Describes the availability of capacity for a Capacity Reservation.

Sourcetype nonrec t = {
  1. capacityReservationId : Values_0.CapacityReservationId.t option;
    (*

    The ID of the Capacity Reservation.

    *)
  2. totalCapacity : Values_0.Integer.t option;
    (*

    The combined amount of Available and Unavailable capacity in the Capacity Reservation.

    *)
  3. totalAvailableCapacity : Values_0.Integer.t option;
    (*

    The remaining capacity. Indicates the amount of resources that can be launched into the Capacity Reservation.

    *)
  4. totalUnavailableCapacity : Values_0.Integer.t option;
    (*

    The used capacity. Indicates that the capacity is in use by resources that are running in the Capacity Reservation.

    *)
}
Sourceval make : ?capacityReservationId:??? -> ?totalCapacity:??? -> ?totalAvailableCapacity:??? -> ?totalUnavailableCapacity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Values_0.Integer.t | `String of Values_0.CapacityReservationId.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