Popularity
8.7
Stable
Activity
0.0
Stable
34
14
11
Monthly Downloads: 35
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 – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
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
~~~~~~