ex_aws_s3 icon indicating copy to clipboard operation
ex_aws_s3 copied to clipboard

Results 28 ex_aws_s3 issues
Sort by recently updated
recently updated
newest added

This PR sends the required upload_id and part_number to upload_part_copy and implements the parsing of the responses required to make multipart copy work. See the spec here https://docs.aws.amazon.com/AmazonS3/latest/API/mpUploadUploadPartCopy.html

### Current behavior ``` bucket_name = "a.example.com" ExAws.Config.new(:s3) |> Map.put(:access_key_id, s3_access_key) |> Map.put(:secret_access_key, s3_secret_key) |> ExAws.S3.presigned_url( :get, bucket_name, "test1.pdf", expires_in: 1000 ) ``` This generates url of the format `https://s3.ap-south-1.amazonaws.com/a.example.com/test1.pdf?....`...

### Environment * Elixir & Erlang versions (elixir --version): ``` Erlang/OTP 22 [erts-10.5] [source] [64-bit] [smp:12:12] [ds:12:12:10] [async-threads:1] [hipe] Elixir 1.10.2 (compiled with Erlang/OTP 22) ``` * ExAws version ```...

Do you guys plan to support S3 Select any time soon? I've hacked at it a bit and thought it was working until I started validating what I get back...

help wanted

Could we cut a new release with recent changes when possible? Thanks Again

### Environment > * Elixir & Erlang versions (elixir --version): Elixir 1.10.0 (compiled with Erlang/OTP 22) > * ExAws version `mix deps |grep ex_aws` ``` ex_aws 2.1.5 (Hex package) (mix)...

* Do not use the issues tracker for help or support (try Elixir Forum, Slack, IRC, etc.) * Questions about how to contribute are fine. ### Environment * Elixir &...

I'd love to see this library support a high level operation similar to `S3.upload` that would do a copy in parts transparently to the end user. The Ruby's SDKs `AWS::S3::ObjectMultipartCopier`....

### Environment * ExAws version 2.0.1 ### Current behavior Currently, `ExAws.S3.presigned_url` requires a config map to be manually passed in to access things like our secret access key. ```ex S3.presigned_url(...

### Environment * Elixir & Erlang versions (elixir --version): ```Elixir 1.9.1 (compiled with Erlang/OTP 20)``` * ExAws version `mix deps | grep ex_aws` ``` * ex_aws 2.1.1 (Hex package) (mix)...