Module Values.UpdateQueueRequestSource

Modify one of your existing queues.

Sourcetype nonrec t = {
  1. concurrentJobs : int option;
    (*

    Specify the maximum number of jobs your queue can process concurrently. For on-demand queues, the value you enter is constrained by your service quotas for Maximum concurrent jobs, per on-demand queue and Maximum concurrent jobs, per account. For reserved queues, update your reservation plan instead in order to increase your yearly commitment.

    *)
  2. description : string option;
    (*

    The new description for the queue, if you are changing it.

    *)
  3. maximumConcurrentFeeds : int option;
    (*

    Specify the maximum number of Elemental Inference feeds MediaConvert can process concurrently.

    *)
  4. name : string;
    (*

    The name of the queue that you are modifying.

    *)
  5. reservationPlanSettings : ReservationPlanSettings.t option;
    (*

    The new details of your pricing plan for your reserved queue. When you set up a new pricing plan to replace an expired one, you enter into another 12-month commitment. When you add capacity to your queue by increasing the number of RTS, you extend the term of your commitment to 12 months from when you add capacity. After you make these commitments, you can't cancel them.

    *)
  6. status : QueueStatus.t option;
    (*

    Pause or activate a queue by changing its status between ACTIVE and PAUSED. If you pause a queue, jobs in that queue won't begin. Jobs that are running when you pause the queue continue to run until they finish or result in an error.

    *)
}
Sourceval context_ : string
Sourceval make : ?concurrentJobs:??? -> ?description:??? -> ?maximumConcurrentFeeds:??? -> ?reservationPlanSettings:??? -> ?status:??? -> name:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of int | `String of string | `Structure of (string * [> `Enum of string | `Integer of int ]) list ]) 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