Module Values.QueueEnvironmentSummarySource

The summary of a queue environment.

Sourcetype nonrec t = {
  1. queueEnvironmentId : QueueEnvironmentId.t option;
    (*

    The queue environment ID.

    *)
  2. name : EnvironmentName.t option;
    (*

    The name of the queue environment.

    *)
  3. priority : Priority.t option;
    (*

    The queue environment's priority.

    *)
}
Sourceval make : ?queueEnvironmentId:??? -> ?name:??? -> ?priority:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Priority.t | `String of QueueEnvironmentId.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