Module Values.CapacityReservationSource

A reservation for a specified number of data processing units (DPUs). When a reservation is initially created, it has no DPUs. Athena allocates DPUs until the allocated amount equals the requested amount.

Sourcetype nonrec t = {
  1. name : CapacityReservationName.t option;
    (*

    The name of the capacity reservation.

    *)
  2. status : CapacityReservationStatus.t option;
    (*

    The status of the capacity reservation.

    *)
  3. targetDpus : TargetDpusInteger.t option;
    (*

    The number of data processing units requested.

    *)
  4. allocatedDpus : AllocatedDpusInteger.t option;
    (*

    The number of data processing units currently allocated.

    *)
  5. lastAllocation : CapacityAllocation.t option;
  6. lastSuccessfulAllocationTime : Timestamp.t option;
    (*

    The time of the most recent capacity allocation that succeeded.

    *)
  7. creationTime : Timestamp.t option;
    (*

    The time in UTC epoch millis when the capacity reservation was created.

    *)
}
Sourceval make : ?name:??? -> ?status:??? -> ?targetDpus:??? -> ?allocatedDpus:??? -> ?lastAllocation:??? -> ?lastSuccessfulAllocationTime:??? -> ?creationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of TargetDpusInteger.t | `String of CapacityReservationName.t | `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.t ]) list | `Timestamp of Timestamp.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