Popularity
8.7
Stable
Activity
0.0
Stable
34
14
11
Monthly Downloads: 1
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.
-
amazonka-s3-streaming
Provides a conduit based interface to uploading data to S3 using the Multipart API -
aws-cloudfront-signer
Haksell library package for signing URL requests to the AWS CloudFront service -
aws-configuration-tools
Configuration types, parsers and renderers for AWS services using configuration-tools -
aws-elastic-transcoder
extension to the Haskell AWS repository to interface to the AWS Elastic Transcoder service -
amazon-emailer
A simple daemon to process messages put into a postgresql table and mail them out using amazons SES.
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
Promo
www.influxdata.com
Do you think we are missing an alternative of aws-sdk or a related project?
Popular Comparisons
README
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
~~~~~~