ex_aws_boto v0.1.1 ExAws.Boto

Link to this section Summary

Functions

If you already have a JSON spec file, you can use this to load it directly.

Loads a service JSON spec from botocore, and generates client modules and objects.

Link to this section Functions

Link to this function

generate_client(service_json)

If you already have a JSON spec file, you can use this to load it directly.

Link to this macro

load(slugs)

(macro)
load(Keyword.t()) :: :ok

Loads a service JSON spec from botocore, and generates client modules and objects.

Accepts a list of services and API versions to load.

Examples

iex> ExAws.Boto.load(iam: "2010-05-08")
:ok

iex> ExAws.IAM.Api.list_users |> ExAws.IAM.Client.request()
{:ok, [ ... ]}