Module Values.ChangeMessageVisibilityBatchResultSource

For each message in the batch, the response contains a ChangeMessageVisibilityBatchResultEntry tag if the message succeeds or a BatchResultErrorEntry tag if the message fails.

Sourcetype nonrec t = {
  1. successful : ChangeMessageVisibilityBatchResultEntryList.t option;
    (*

    A list of ChangeMessageVisibilityBatchResultEntry items.

    *)
  2. failed : BatchResultErrorEntryList.t option;
    (*

    A list of BatchResultErrorEntry items.

    *)
}
Sourcetype nonrec error = [
  1. | `BatchEntryIdsNotDistinct of BatchEntryIdsNotDistinct.t
  2. | `EmptyBatchRequest of EmptyBatchRequest.t
  3. | `InvalidAddress of InvalidAddress.t
  4. | `InvalidBatchEntryId of InvalidBatchEntryId.t
  5. | `InvalidSecurity of InvalidSecurity.t
  6. | `QueueDoesNotExist of QueueDoesNotExist.t
  7. | `RequestThrottled of RequestThrottled.t
  8. | `TooManyEntriesInBatchRequest of TooManyEntriesInBatchRequest.t
  9. | `UnsupportedOperation of UnsupportedOperation.t
  10. | `Unknown_operation_error of string * string option
]
Sourceval make : ?successful:??? -> ?failed:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BatchEntryIdsNotDistinct of BatchEntryIdsNotDistinct.t | `EmptyBatchRequest of EmptyBatchRequest.t | `InvalidAddress of InvalidAddress.t | `InvalidBatchEntryId of InvalidBatchEntryId.t | `InvalidSecurity of InvalidSecurity.t | `QueueDoesNotExist of QueueDoesNotExist.t | `RequestThrottled of RequestThrottled.t | `TooManyEntriesInBatchRequest of TooManyEntriesInBatchRequest.t | `Unknown_operation_error of string * string option | `UnsupportedOperation of UnsupportedOperation.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BatchEntryIdsNotDistinct of BatchEntryIdsNotDistinct.t | `EmptyBatchRequest of EmptyBatchRequest.t | `InvalidAddress of InvalidAddress.t | `InvalidBatchEntryId of InvalidBatchEntryId.t | `InvalidSecurity of InvalidSecurity.t | `QueueDoesNotExist of QueueDoesNotExist.t | `RequestThrottled of RequestThrottled.t | `TooManyEntriesInBatchRequest of TooManyEntriesInBatchRequest.t | `Unknown_operation_error of string * string option | `UnsupportedOperation of UnsupportedOperation.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t ]) list ] list ]) 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