Module Values_1.Ec2CapacityReservationSource

The EC2 capacity reservations that are shared to an ML capacity reservation.

Sourcetype nonrec t = {
  1. ec2CapacityReservationId : Ec2CapacityReservationId.t option;
    (*

    The unique identifier for an EC2 capacity reservation that's part of the ML capacity reservation.

    *)
  2. totalInstanceCount : TaskCount.t option;
    (*

    The number of instances that you allocated to the EC2 capacity reservation.

    *)
  3. availableInstanceCount : TaskCount.t option;
    (*

    The number of instances that are currently available in the EC2 capacity reservation.

    *)
  4. usedByCurrentEndpoint : TaskCount.t option;
    (*

    The number of instances from the EC2 capacity reservation that are being used by the endpoint.

    *)
}
Sourceval make : ?ec2CapacityReservationId:??? -> ?totalInstanceCount:??? -> ?availableInstanceCount:??? -> ?usedByCurrentEndpoint:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of TaskCount.t | `String of Ec2CapacityReservationId.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