Popularity
8.7
Stable
Activity
0.0
Stable
34
14
11

Monthly Downloads: 80
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License

aws-sdk alternatives and similar packages

Based on the "AWS" category.
Alternatively, view aws-sdk alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of aws-sdk or a related project?

Add another 'AWS' Package

README

Build Status

AWS-SDK

An AWS(Amazon Web Services) library for Haskell.

Usage

Put your AWS AccessKey and SecretAccessKey into a configuration file. Write the followfing in $aws-sdk/aws.config.

accessKey: your-access-key
secretAccessKey: your-secret-access-key

The following is quick example(DescribeInstances).

module Example where

import Data.Conduit
import qualified Data.Conduit.List as CL
import Control.Monad.Trans.Class (lift)

import Cloud.AWS.EC2

main :: IO ()
main = do
    doc <- runResourceT $ do
        runEC2 $ do
            setRegion "ap-northeast-1"
            response <- describeInstances [] []
            lift $ response $$+- CL.consume
    print doc
    putStr "Length: "
    print $ length doc
~~~~~~