Protocols.AwsQueryAwsQuery protocol support (over eio-based httpun client)
module Error : sig ... endtype error = [ | `HttpError of Http.http_failure| `XmlParseError of string| `AWSServiceError of AwsErrors.aws_service_error ]val error_to_string :
[< `AWSServiceError of AwsErrors.aws_service_error
| `HttpError of Http.http_failure
| `XmlParseError of string ] ->
stringval pp_error :
Stdlib.Format.formatter ->
[< `AWSServiceError of AwsErrors.aws_service_error
| `HttpError of Http.http_failure
| `XmlParseError of string ] ->
unitmodule Serialize : sig ... endmodule Deserialize : sig ... endmodule Errors : sig ... endmodule Response : sig ... endval request :
action:string ->
xmlNamespace:string ->
service:Service.descriptor ->
context:'http_t Context.t ->
fields:(string * string list) list ->
output_deserializer:(Xmlm.input -> 'out) ->
error_deserializer:
(Error.t ->
body:string ->
[> `HttpError of Smaws_Lib__Http.http_failure
| `XmlParseError of string ] as 'a) ->
('out, 'a) Stdlib.result