Module Aws.Error
This contains errors that are returned from AWS api calls.
type bad_response={body : string;message : string;}Contents of a bad response error, containing the body of what could not be interpreted and a (potential) reason why.
type 'a error_response=|BadResponse of bad_responseA BadResponse is an error response that could not be parsed into AWS error data structures.
|AwsError of ('a code * string) listAn AwsError is a list of errors parsed out of XML returned in a non-2xx response.
An error_response is returned when an HTTP response returns with a non-2xx code.
type 'a t=|TransportError of stringTransportError indicate that an error occurred at the level of the HTTP request (and generally, nothing was returned).
|HttpError of int * 'a error_responseHttpError indicates that a response was recieved with an HTTP error code (non-2xx)
val format : ('a -> string) -> 'a t -> stringProduces a string representation of an error, suitable for printing.