GithubHelp home page GithubHelp logo

isabella232 / httpc-aws Goto Github PK

View Code? Open in Web Editor NEW

This project forked from helium/httpc-aws

0.0 0.0 0.0 2.34 MB

A light-weight, relatively unopinionated AWS API client for Erlang

License: Other

Erlang 99.78% Makefile 0.22%

httpc-aws's Introduction

httpc-aws

A light-weight, relatively unopinionated AWS API client for Erlang 21.0+.

Build Status codecov.io

Supported Erlang Versions

  • 21.0

Configuration

Configuration for httpc-aws is can be provided in multiple ways. It is designed to behave similarly to the AWS Command Line Interface with respect to providing region and configuration information. Additionally it has two methods, httpc_aws:set_region/1 and httpc_aws:set_credentials/2 to allow for application specific configuration, bypassing the automatic configuration behavior.

Configuration Precedence

The configuration values have the following precedence:

  • Explicitly configured via API
  • Environment variables
  • Configuration file
  • EC2 Instance Metadata Service where applicable

Credentials Precedence

The credentials values have the following precedence:

  • Explicitly configured via API
  • Environment variables
  • Credentials file
  • EC2 Instance Metadata Service

Environment Variables

As with the AWS CLI, the following environment variables can be used to provide configuration or to impact configuration behavior:

  • AWS_DEFAULT_PROFILE
  • AWS_DEFAULT_REGION
  • AWS_CONFIG_FILE
  • AWS_SHARED_CREDENTIALS_FILE
  • AWS_ACCESS_KEY_ID
  • AWS_SECRET_ACCESS_KEY

API Methods

Method Description
httpc_aws:set_region/1 Manually specify the AWS region to make requests to.
httpc_aws:set_credentials/2 Manually specify the request credentials to use.
httpc_aws:refresh_credentials/0 Refresh the credentials from the environment, filesystem, or EC2 Instance Metadata service.
httpc_aws:get/2 Perform a GET request to the API specifying the service and request path.
httpc_aws:get/3 Perform a GET request specifying the service, path, and headers.
httpc_aws:post/4 Perform a POST request specifying the service, path, headers, and body.
httpc_aws:request/5 Perform a request specifying the service, method, path, headers, and body.
httpc_aws:request/6 Perform a request specifying the service, method, path, headers, body, and httpc:http_options().
httpc_aws:request/7 Perform a request specifying the service, method, path, headers, body, httpc:http_options(), and override the API endpoint.

Example Usage

The following example assumes that you either have locally configured credentials or that you're using the AWS Instance Metadata service for credentials:

application:start(httpc_aws).
{ok, {Headers, Response}} = httpc_aws:get("ec2","/?Action=DescribeTags&Version=2015-10-01").

To configure credentials, invoke httpc_aws:set_credentials/2:

application:start(httpc_aws).

httpc_aws:set_credentials("AKIDEXAMPLE", "wJalrXUtnFEMI/K7MDENG+bPxRfiCYEXAMPLEKEY"),

RequestHeaders = [{"Content-Type", "application/x-amz-json-1.0"},
                  {"X-Amz-Target", "DynamoDB_20120810.ListTables"}],

{ok, {Headers, Response}} = httpc_aws:post("dynamodb", "/",
                                           "{\"Limit\": 20}",
                                           RequestHeaders).

Build

$ bin/rebar3 compile

Test

$ bin/rebar3 eunit && bin/rebar3 eunit
$ bin/rebar3 dialyzer

License

BSD 3-Clause License

httpc-aws's People

Contributors

gmr avatar vagabond avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.