AWScala icon indicating copy to clipboard operation
AWScala copied to clipboard

Using AWS SDK on the Scala REPL

Results 74 AWScala issues
Sort by recently updated
recently updated
newest added

awscala provides a `CredentialsProvider` trait that doesn't seem to offer any benefit. It simply extends the Java SDK's own `AWSCredentialsProvider` interface which provides identical methods. One problem with this is...

I'm trying to upload a file and set a expiration time to it. ``` val metadata: ObjectMetadata = new ObjectMetadata() metadata.setContentLength(file.length) metadata.setExpirationTime(DateTime.now().plusMinutes(10).toDate) bucket.get.putObjectAsPublicRead(filename, file, metadata) ``` But when I check...

Would you consider breaking out the dependencies into more modular pieces? Having to depend on all of aws-java-sdk when only using S3 is really unnecessary. aws-java-sdk is already broken up...

https://github.com/bizreach/aws-kinesis-scala provides `"jp.co.bizreach" %% "aws-kinesis-scala"` and seems to have a very similar implementation style. Maybe it could be or serve as the basis of implementing Kinesis support?

Hi, I'm unable to limit the number of results in a dynamodb query operation, the following snippet returns 23k messages instead of 50. Why is the result set size so...

I'm using sbt 0.13.10, Scala 2.12.4, and Scalatra 2.6.2 When forcing AWScala to 0.6.2, I can `jetty:start` normally from sbt. With 0.6.3, it fails with error in attached file [error.txt](https://github.com/seratch/AWScala/files/1775858/error.txt)...

because `s3.bucket(name: string)` is doing a list bucket under the hood before doing a find, it won't be able to reach any buckets in a different account given that cross...

Whenever I try to generatePresignedUrl for keys(key: /some_folder/file name.JPG) with spaces, it generates the URL, but the URL returns 403 with the below error message The request signature we calculated...

I was looking through the documentation of this library and couldn't help but notice that there is no pagination on the S3 List call. Am I correct? I need this...

Added a Configured implementation for EC2 client