Module Values.GetQueueEnvironmentResponseSource

Gets a queue environment.

Sourcetype nonrec t = {
  1. queueEnvironmentId : QueueEnvironmentId.t option;
    (*

    The queue environment ID.

    *)
  2. name : EnvironmentName.t option;
    (*

    The name of the queue environment.

    *)
  3. priority : Priority.t option;
    (*

    The priority of the queue environment.

    *)
  4. templateType : EnvironmentTemplateType.t option;
    (*

    The type of template for the queue environment.

    *)
  5. template : EnvironmentTemplate.t option;
    (*

    The template for the queue environment.

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

    The date and time the resource was created.

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

    The user or system that created this resource.>

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

    The date and time the resource was updated.

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

    The user or system that updated this resource.

    *)
}
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 : ?queueEnvironmentId:??? -> ?name:??? -> ?priority:??? -> ?templateType:??? -> ?template:??? -> ?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 | `Integer of Priority.t | `String of QueueEnvironmentId.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