Module Values_1.QueueSource

Contains information about a queue.

Sourcetype nonrec t = {
  1. name : Values_0.CommonNameLength127.t option;
    (*

    The name of the queue.

    *)
  2. queueArn : Values_0.ARN.t option;
    (*

    The Amazon Resource Name (ARN) for the queue.

    *)
  3. queueId : Values_0.QueueId.t option;
    (*

    The identifier for the queue.

    *)
  4. description : Values_0.QueueDescription.t option;
    (*

    The description of the queue.

    *)
  5. outboundCallerConfig : Values_0.OutboundCallerConfig.t option;
    (*

    The outbound caller ID name, number, and outbound whisper flow.

    *)
  6. outboundEmailConfig : Values_0.OutboundEmailConfig.t option;
    (*

    The outbound email address ID for a specified queue.

    *)
  7. hoursOfOperationId : Values_0.HoursOfOperationId.t option;
    (*

    The identifier for the hours of operation.

    *)
  8. maxContacts : Values_0.QueueMaxContacts.t option;
    (*

    The maximum number of contacts that can be in the queue before it is considered full.

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

    The status of the queue.

    *)
  10. tags : Values_0.TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.

    *)
  11. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    The timestamp when this resource was last modified.

    *)
  12. lastModifiedRegion : Values_0.RegionName.t option;
    (*

    The Amazon Web Services Region where this resource was last modified.

    *)
}
Sourceval make : ?name:??? -> ?queueArn:??? -> ?queueId:??? -> ?description:??? -> ?outboundCallerConfig:??? -> ?outboundEmailConfig:??? -> ?hoursOfOperationId:??? -> ?maxContacts:??? -> ?status:??? -> ?tags:??? -> ?lastModifiedTime:??? -> ?lastModifiedRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.QueueMaxContacts.t | `Map of ([> `String of string ] * [> `String of string ]) list | `String of Values_0.CommonNameLength127.t | `Structure of (string * [> `String of string ]) list | `Timestamp of Values_0.Timestamp.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