Module Values_1.CapacityAllocationSource

Information about instance capacity usage for a Capacity Reservation.

Sourcetype nonrec t = {
  1. allocationType : Values_0.AllocationType.t option;
    (*

    The usage type. used indicates that the instance capacity is in use by instances that are running in the Capacity Reservation.

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

    The amount of instance capacity associated with the usage. For example a value of 4 indicates that instance capacity for 4 instances is currently in use.

    *)
  3. allocationMetadata : Values_0.CapacityAllocationMetadataList.t option;
    (*

    Additional metadata associated with the capacity allocation. Each entry contains a key-value pair providing context about the allocation.

    *)
}
Sourceval make : ?allocationType:??? -> ?count:??? -> ?allocationMetadata:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.Integer.t | `List of [> `Structure of (string * [> `String of string ]) list ] list ]) 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