- Generated by aws-codegen using the same JSON descriptions of AWS services used to build the AWS SDK for Go.
 - Supports AWS services that use 
jsonandrest-jsonprotocols. 
Listing Amazon Kinesis streams
iex> client = %AWS.Client{access_key_id: "<access-key-id>",
                     secret_access_key: "<secret-access-key>",
                     region: "us-east-1",
                     endpoint: "amazonaws.com"}
iex> {:ok, result, resp} = AWS.Kinesis.list_streams(client, %{})
iex> IO.inspect result
%{"HasMoreStreams" => false, "StreamNames" => []}- 
Add it as a Mix dependency in the project.
def deps do [{:aws, "~> 0.3.0"}] end
 - 
Configure the OTP application to start
aws-elixirNote: If you are using elixir 1.4, you can skip this step
def application do [applications: [:logger, :aws]] end
 - 
Run
mix deps.getto install. 
Code is generated using the aws-codegen library, from the JSON descriptions of AWS services provided by Amazon.
- Run 
MIX_ENV=docs mix docs - Open 
docs/index.html 
mix test
- Make sure the 
CHANGELOG.mdis up-to-date and and reflects the changes for the new version. - Bump the version here in the 
README.mdand inmix.exs. - Run 
git tag v$VERSIONto tag the version that was just published. - Run 
git push --tags origin masterto push tags to Github. - Run 
mix hex.publishto publish the new version. - Run 
mix hex.docsto publish the documentation. 
© 2015-2016 Jamshed Kakar [email protected]. See LICENSE file for details.