Module Values.GetQueueLimitAssociationResponseSource

Domain fields for QueueLimitAssociation summary/response shapes, ordered before timestamps.

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

    The unique identifier of the queue associated with the limit.

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

    The unique identifier of the limit associated with the queue.

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

    The current status of the limit.

    *)
  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 last updated the association.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerErrorException of InternalServerErrorException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?queueId:??? -> ?limitId:??? -> ?status:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerErrorException of InternalServerErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerErrorException of InternalServerErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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