Module Values.GetQueueAttributesResultSource

A list of returned queue attributes.

Sourcetype nonrec t = {
  1. attributes : QueueAttributeMap.t option;
    (*

    A map of attributes to their respective values.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidAddress of InvalidAddress.t
  2. | `InvalidAttributeName of InvalidAttributeName.t
  3. | `InvalidSecurity of InvalidSecurity.t
  4. | `QueueDoesNotExist of QueueDoesNotExist.t
  5. | `RequestThrottled of RequestThrottled.t
  6. | `UnsupportedOperation of UnsupportedOperation.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?attributes:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidAddress of InvalidAddress.t | `InvalidAttributeName of InvalidAttributeName.t | `InvalidSecurity of InvalidSecurity.t | `QueueDoesNotExist of QueueDoesNotExist.t | `RequestThrottled of RequestThrottled.t | `Unknown_operation_error of string * string option | `UnsupportedOperation of UnsupportedOperation.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidAddress of InvalidAddress.t | `InvalidAttributeName of InvalidAttributeName.t | `InvalidSecurity of InvalidSecurity.t | `QueueDoesNotExist of QueueDoesNotExist.t | `RequestThrottled of RequestThrottled.t | `Unknown_operation_error of string * string option | `UnsupportedOperation of UnsupportedOperation.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `Enum of string ] * [> `String of String_.t ]) 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