Values.QueueLimitAssociationSummarySourceProvides information about the association between a queue and a limit.
type nonrec t = {queueId : QueueId.t option;The unique identifier of the queue in the association.
*)limitId : LimitId.t option;The unique identifier of the limit in the association.
*)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.
*)createdAt : CreatedAt.t option;The Unix timestamp of the date and time that the association was created.
*)createdBy : CreatedBy.t option;The user identifier of the person that created the association.
*)updatedAt : UpdatedAt.t option;The Unix timestamp of the date and time that the association was last updated.
*)updatedBy : UpdatedBy.t option;The user identifier of the person that updated the association.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of QueueId.t
| `Timestamp of CreatedAt.t ])
list ]