rstradling / awsio   0.0.8

Apache License 2.0 GitHub

Amazon 2.0 SDK plus cats/cats-effect

Scala versions: 2.12 2.11

Build Status Gitter Latest version Coverage Status

awsio

Amazon 2.0 SDK plus cats/cats-effect. This is a library for working with cats-effect and AWS 2.0 SDK using a final tagless style. Please note that this is very much a WIP. Philosophy wise we will not be trying to wrap the types like ListBucketRequest, DeleteBucketResponse as those are core to aws and all that wrapping just takes extra time plus it can get out of date easily especially since AWS 2.0 SDK is still in preview mode. Please note a good amount of the dependencies are newer (AWS 2.0 SDK, Monix RC, fs2)

Initial focus

Initial focus will be on SNS, SQS, and S3 and filling out the api as it relates to end user application surface areas (i.e. less about devops).

Modules

  • awsio-s3 - Implementation of S3 operations on buckets and objects. The object one needs lots of love and is not at all fit for production use. The bucket ones seems to work fine
  • awsio-sns - Implementation of SNS operations on topics. It seems to work fine.
  • awsio-sqs - Implementation of SQS operations on queues. It seems to work fine but may still require a bit of tweaking API wise.
  • awsio-sqs-fs2 - Implementation of a receiveLoop and AckProcessor for SQS using fs2 streams.
  • awsio-sqs-monix - Implementation of a receiveLoop and AckProcessor for SQS using monix iterant