Module Batch.JobQueue

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html

type compute_environment_order = {
  1. compute_environment : string;
  2. order : int;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobqueue-computeenvironmentorder.html

type properties = {
  1. compute_environment_order : compute_environment_order list;
  2. priority : int;
  3. state : string option;
  4. scheduling_policy_arn : string option;
  5. job_queue_name : string option;
  6. tags : string Stdlib__Map.Make(Stdlib.String).t option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html;

val make_properties : compute_environment_order:compute_environment_order list -> priority:int -> ?state:string -> ?scheduling_policy_arn:string -> ?job_queue_name:string -> ?tags:string Stdlib__Map.Make(Stdlib.String).t -> unit -> properties
val make_compute_environment_order : compute_environment:string -> order:int -> unit -> compute_environment_order
val yojson_of_compute_environment_order : compute_environment_order -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. job_queue_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string