erl_aws_http

Helps you to build libraries that consumes typical amazon http apis.

Getting started

Amazon credentials

You should add your amazon credentials in the app config of erl_aws_http, If no profile is sent in the opts argument to a http call the profile called default will be used. Config example:

[
{aws_http,
[{profiles,
[
{default,
[{region, "eu-west-1"},
{aws_access_key_id, "AKAAAAAAAAAAAAAA"},
{aws_secret_access_key, "L7BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB"}]}
]
}]
}
].

Check out erl_aws_lambda if you want to see how this library is used.