aws-sdk-java
aws-sdk-java copied to clipboard
The official AWS SDK for Java 1.x. The AWS SDK for Java 2.x is available here: https://github.com/aws/aws-sdk-java-v2/
- **Expected behavior of the SDK** Version field should be ignored if SaveBehavior.CLOBBER is provided in the DynamoDBMapperConfig passed to DynamoDBMapper::transactionWrite. - **Actual behavior exhibited** Version field is not ignored....
Adding `equals` and `hashcode` to S3 bucket
CSVInput.java will throw an IllegalArgumentException if the fieldDelimiter is an empty String, although the XML generated would be valid and the client would be consistent with AWS CLI and calling...
Unable to create ClientConfiguration=>AmazonHttpClient within secure (SecurityManager) environments
Migrating from 1.1.700 to 1.11.908 it's not anymore possible to use AmazonHttpClient / ClientConfiguration within restrictive security environments which forbid access to environment properties. The way in which the ClientConfiguration...
## Describe the issue `DynamoDBMapper::batchSave` uses `AmazonDynamoDB::batchWriteItem`, but does not retry when the latter throws an exception that is documented as retryable. E.g. from `AmazonDynamoDB` docs: > @throws ProvisionedThroughputExceededException -...
Some s3 requests in sdk already support setting requester pays option, for example: - DeleteObjectsRequest - InitiateMultipartUploadRequest - GetObjectMetadataRequest - CopyObjectRequest However there are some requests from which this option...
For a while now I am trying to get my projects' modues straigt as of Java9's module system. As of now just two dependencies left in my projects (https://bitbucket.org/refcodes/) without...
## Describe the bug In production, our server failed to create a new file in the S3 bucket. In typical cases, there are usually detailed error messages accompanying the "com.amazonaws.SdkClientException:...
downloading with the aws-sdk-java with the following code: final TransferManager xferMgr = TransferManagerBuilder.standard().build(); Download xfer = xferMgr.download("mybucket", "data", new File("/data/data")); xfer.waitForCompletion(); xferMgr.shutdownNow(); where "data" is an **S3 file ~ 50GB...
*Issue #, if available:* N/A *Description of changes:* The `DefaultBatchLoadRetryStrategy` did not support customization for the number of retries to attempt. I found this odd as the `DefaultBatchWriteRetryStrategy` did allow...