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/
I would like to use a version of QueueBufferConfig that can be reconfigured. QueueBufferConfig is not final, so with just this small change I can hook what I need to...
### Describe the issue As I understand it, the _Supported data types for DynamoDB Mapper for Java_ documentation does not include several implemented converters. https://github.com/aws/aws-sdk-java/blob/39d5072fc13b491075f2798352b5348babcb677f/aws-java-sdk-dynamodb/src/main/java/com/amazonaws/services/dynamodbv2/datamodeling/StandardTypeConverters.java#L254-L274 ### Links - https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBMapper.DataTypes.html
https://github.com/aws/aws-sdk-java/blob/ffdf66cf932e60d9375a19967ad30d0ab48ae84f/aws-java-sdk-core/src/main/java/com/amazonaws/auth/AbstractAWSSigner.java#L341 When signing a request, if the request method is "POST", and the request content is `null`, and the request has existing query parameters, then the Signer algorithm will use...
I'm using dynamodb and the java class I'm storing has the following structure: ``` @DynamoDBTable(tableName="Animals") class abstract Animal { @DynamoDBHashKey(attributeName = "Id") @DynamoDBAutoGeneratedKey String id; } class Dog extends Animal...
We have code that iterates all regions and (for example) calls describe instance on each for a given credential. The SDK should provide region enums as a convenience, not a...
I need to stream file to S3 type storage. I know that V2 authorization do support chunked streaming using PUT without knowing the content length but Its not clear what...
According to https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35, a Range header may include a single negative value to indicate the last X bytes in a file should be retrieved. For example `bytes=-500` is a valid...
I have defined a POJO/DTO with a secondary index range key which is also used as the version attribute for optimistic locking. The result is that there is no locking...
# Scenario [readResource()](https://github.com/aws/aws-sdk-java/blob/master/aws-java-sdk-core/src/main/java/com/amazonaws/internal/EC2MetadataClient.java#L82) makes use of `HttpURLConnection` to get metadata. When running this code outside of an EC2 instance the connection rightly fails due to the unavailability of http://169.254.169.254/latest/meta-data/instance-id outside...
Currently com.amazonaws.services.glacier.transfer.ArchiveTransferManager's upload() method and its variants only take in a File for uploading. This limits its use to uploading files which exist in the file system. It would be...