Module Values_4.UpdateInterruptibleCapacityReservationAllocationResultSource

Modifies the number of instances allocated to an interruptible reservation, allowing you to add more capacity or reclaim capacity to your source Capacity Reservation.

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

    The ID of the interruptible Capacity Reservation that was modified.

    *)
  2. sourceCapacityReservationId : Values_0.CapacityReservationId.t option;
    (*

    The ID of the source Capacity Reservation to which capacity was reclaimed or from which capacity was allocated.

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

    The current number of instances allocated to the interruptible reservation.

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

    The requested number of instances for the interruptible Capacity Reservation.

    *)
  5. status : Values_1.InterruptibleCapacityReservationAllocationStatus.t option;
    (*

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

    *)
  6. interruptionType : Values_1.InterruptionType.t option;
    (*

    The interruption type for the interruptible reservation.

    *)
}
Sourcetype nonrec error = [
  1. | `Unknown_operation_error of string * string option
]
Sourceval make : ?interruptibleCapacityReservationId:??? -> ?sourceCapacityReservationId:??? -> ?instanceCount:??? -> ?targetInstanceCount:??? -> ?status:??? -> ?interruptionType:??? -> unit -> t
Sourceval error_of_json : 'a -> Yojson.Safe.t -> [> `Unknown_operation_error of 'a * string option ]
Sourceval error_of_xml : 'a -> Awso.Xml.t -> [> `Unknown_operation_error of 'a * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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