package aws

  1. Overview
  2. Docs
Amazon Web Services SDK

Install

Dune Dependency

Authors

Maintainers

Sources

aws-1.0.2.tar.gz
sha256=684e3f8c5b0384f4329ca258ad3cb4aaa2ac9522401dc781163d0019cff2cec9
md5=21c8d70e4e95ccb4285ddef3cff8c230

doc/aws/Aws/Request/index.html

Module Aws.Request

This contains the http-library agnostic representation of requests to be used by runtime implementations.

type meth = [
  1. | `DELETE
  2. | `GET
  3. | `HEAD
  4. | `OPTIONS
  5. | `CONNECT
  6. | `TRACE
  7. | `Other of string
  8. | `PATCH
  9. | `POST
  10. | `PUT
]

HTTP methods. This is (intentionally) compatible with Cohttp.Code.meth to make the cohttp-based runtime implementation easier.

val string_of_meth : meth -> string

Produces a string from the method. This is needed for AWS request signing.

type headers = (string * string) list

HTTP headers.

type t = meth * Uri.t * headers

A request is a method, a uri, and a list of headers.

OCaml

Innovation. Community. Security.