Module Values_1.InterruptibleCapacityAllocationSource

Represents the allocation of capacity from a source reservation to an interruptible reservation, tracking current and target instance counts for allocation management.

Sourcetype nonrec t = {
  1. instanceCount : Values_0.Integer.t option;
    (*

    The current number of instances allocated to the interruptible reservation.

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

    After your modify request, the requested number of instances allocated to interruptible reservation.

    *)
  3. status : InterruptibleCapacityReservationAllocationStatus.t option;
    (*

    The current status of the allocation (updating during reclamation, active when complete).

    *)
  4. interruptibleCapacityReservationId : Values_0.String_.t option;
    (*

    The ID of the interruptible Capacity Reservation created from the allocation.

    *)
  5. interruptionType : InterruptionType.t option;
    (*

    The type of interruption policy applied to the interruptible reservation.

    *)
}
Sourceval make : ?instanceCount:??? -> ?targetInstanceCount:??? -> ?status:??? -> ?interruptibleCapacityReservationId:??? -> ?interruptionType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.Integer.t | `String of Values_0.String_.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