Popularity
8.7
Stable
Activity
0.0
Stable
34
14
11
Monthly Downloads: 5
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.
-
serverless-haskell
Deploying Haskell applications to AWS Lambda with Serverless -
stratosphere
Haskell EDSL and type-checker for AWS CloudFormation templates -
amazonka-s3-streaming
Provides a conduit based interface to uploading data to S3 using the Multipart API -
aws-kinesis-client
A producer/consumer client library for Kinesis -
aws-performance-tests
Performance Tests for the Haskell Bindings for Amazon Web Services (AWS) -
aws-sign4
Haskell implementation of the AWS Signature V4 protocol for signing HTTP requests -
aws-configuration-tools
Configuration types, parsers and renderers for AWS services using configuration-tools -
aws-cloudfront-signer
Haksell library package for signing URL requests to the AWS CloudFront service -
aws-elastic-transcoder
extension to the Haskell AWS repository to interface to the AWS Elastic Transcoder service -
aws-dynamodb-conduit
Conduit-based interface for AWS DynamoDB -
amazon-emailer
A simple daemon to process messages put into a postgresql table and mail them out using amazons SES.
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
Do you think we are missing an alternative of aws-sdk or a related project?
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
~~~~~~