Module Values.QueueLimitAssociationSummarySource

Provides information about the association between a queue and a limit.

Sourcetype nonrec t = {
  1. queueId : QueueId.t option;
    (*

    The unique identifier of the queue in the association.

    *)
  2. limitId : LimitId.t option;
    (*

    The unique identifier of the limit in the association.

    *)
  3. status : QueueLimitAssociationStatus.t option;
    (*

    The status of task scheduling in the queue-limit association. ACTIVE - Association is active. STOP_LIMIT_USAGE_AND_COMPLETE_TASKS - Association has stopped scheduling new tasks and is completing current tasks. STOP_LIMIT_USAGE_AND_CANCEL_TASKS - Association has stopped scheduling new tasks and is canceling current tasks. STOPPED - Association has been stopped.

    *)
  4. createdAt : CreatedAt.t option;
    (*

    The Unix timestamp of the date and time that the association was created.

    *)
  5. createdBy : CreatedBy.t option;
    (*

    The user identifier of the person that created the association.

    *)
  6. updatedAt : UpdatedAt.t option;
    (*

    The Unix timestamp of the date and time that the association was last updated.

    *)
  7. updatedBy : UpdatedBy.t option;
    (*

    The user identifier of the person that updated the association.

    *)
}
Sourceval make : ?queueId:??? -> ?limitId:??? -> ?status:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of QueueId.t | `Timestamp of CreatedAt.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