Module Values.CapacityAssignmentConfigurationSource

Assigns Athena workgroups (and hence their queries) to capacity reservations. A capacity reservation can have only one capacity assignment configuration, but the capacity assignment configuration can be made up of multiple individual assignments. Each assignment specifies how Athena queries can consume capacity from the capacity reservation that their workgroup is mapped to.

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

    The name of the reservation that the capacity assignment configuration is for.

    *)
  2. capacityAssignments : CapacityAssignmentsList.t option;
    (*

    The list of assignments that make up the capacity assignment configuration.

    *)
}
Sourceval make : ?capacityReservationName:??? -> ?capacityAssignments:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of WorkGroupName.t ] list ]) list ] list | `String of CapacityReservationName.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