ExAws.Request.HTTPoison

Configuration for HTTPoison

Options can set for HTTPoison with the following config

HTTPoison 0.7.X

config :ex_aws, :httpoison_opts,
  recv_timeout: 30_000

HTTPoison 0.6.X

config :ex_aws, :httpoison_opts,
  hackney: [recv_timeout: 30_000]

The default config handles setting both of the above

Source

Summary

request(method, url, body \\ "", headers \\ [])

Callback implementation for ExAws.Request.HttpClient.request/4

Functions

request(method, url, body \\ "", headers \\ [])

Callback implementation for ExAws.Request.HttpClient.request/4.

Source