Module Values.ServiceEnvironmentOrderSource

Specifies the order of a service environment for a job queue. This determines the priority order when multiple service environments are associated with the same job queue.

Sourcetype nonrec t = {
  1. order : Integer.t;
    (*

    The order of the service environment. Job queues with a higher priority are evaluated first when associated with the same service environment.

    *)
  2. serviceEnvironment : String_.t;
    (*

    The name or ARN of the service environment.

    *)
}
Sourceval context_ : string
Sourceval make : order:Integer.t -> serviceEnvironment:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.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