An open API service indexing awesome lists of open source software.

https://github.com/andreashasse/erl_aws_http

Helps you to build libraries that consumes typical amazon http apis.
https://github.com/andreashasse/erl_aws_http

Last synced: 13 days ago
JSON representation

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

Awesome Lists containing this project

README

          

# 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:
```erlang
[
{aws_http,
[{profiles,
[
{default,
[{region, "eu-west-1"},
{aws_access_key_id, "AKAAAAAAAAAAAAAA"},
{aws_secret_access_key, "L7BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB"}]}
]
}]
}
].

```

Check out [erl_aws_lambda](https://github.com/anha0825/erl_aws_lambda) if you want to see how this library is used.