Skip to content
This repository has been archived by the owner on Sep 28, 2018. It is now read-only.

Latest commit

 

History

History
24 lines (16 loc) · 823 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 823 Bytes

aws-scala-sdk

Join the chat at https://gitter.im/awslabs/aws-scala-sdk

It's like the AWS SDK for Java, but more Scala-y.

Building

Have a look at config.yaml. Pick your favorite version of the AWS SDK for Java. Then run build.sh. You'll need Apache Maven on your path.

Using

import com.amazonaws.services.kinesis.model._
import com.amazonaws.services.kinesis.scala._

val client = new AmazonKinesisClient("us-west-2")
client.listStreams(new ListStreamsRequest()).
  map((r: ListStreamsResult) => r.getStreams())

Contributing

Feature and pull requests welcome!