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.
- Host: GitHub
- URL: https://github.com/andreashasse/erl_aws_http
- Owner: andreashasse
- License: gpl-2.0
- Created: 2015-04-14T12:16:08.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-27T19:57:52.000Z (almost 11 years ago)
- Last Synced: 2025-12-13T01:46:16.121Z (6 months ago)
- Language: Erlang
- Size: 355 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.