Module Values.CreateQueueLimitAssociationRequestSource

Associates a limit with a particular queue. After the limit is associated, all workers for jobs that specify the limit associated with the queue are subject to the limit. You can't associate two limits with the same amountRequirementName to the same queue.

Sourcetype nonrec t = {
  1. farmId : FarmId.t;
    (*

    The unique identifier of the farm that contains the queue and limit to associate.

    *)
  2. queueId : QueueId.t;
    (*

    The unique identifier of the queue to associate with the limit.

    *)
  3. limitId : LimitId.t;
    (*

    The unique identifier of the limit to associate with the queue.

    *)
}
Sourceval context_ : string
Sourceval make : farmId:FarmId.t -> queueId:QueueId.t -> limitId:LimitId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FarmId.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