aws-sdk-java-v2
aws-sdk-java-v2 copied to clipboard
The official AWS SDK for Java - Version 2
This fixes an issue where event stream exception messages included a status code of zero.
### Describe the bug As say, I have a order class: @DynamoDbBean public class Order { private Long id; private Integer amount; public Order() { } public Order(long l, int...
One way of having instances of `DynamoDbEnhancedAsyncClient` or `DynamoDbAsyncTable` in an app is to declare them as singletons and inject whenever needed. At the same time `DynamoDbEnhancedAsyncClient` and `DynamoDbAsyncTable` can...
### Describe the feature How can one send chunked transfer encoding requests with SdkHttpFullRequest today? https://github.com/dblock/aws-sdk-sigv4-demo/issues/1 I'd like something like this: ``` byte payload[] = ... // something very large...
This issue tracks the 2.x implementation of equivalent functionality to the 1.11.x `SnsMessageManager`
## Describe the bug From time to time, we get an ERROR log from `TransformingAsyncResponseHandler` telling us that there was an NPE. It does not affect our app in any...
I am trying to upload a file to s3 and added a event notification pointing to sqs queue. I was using `S3EventNotification` class to parse it earlier in SDK 1.x...
### Describe the feature The proposed feature is a simple mechanism to cancel a multipart upload, close socket, kill upload threads, etc. Something simple, like transferManager.cancelTransfer(fileUpload). I assume that the...
Please bring back something similar to ItemUtils from sdk v1 to sdk v2. I checked #1975 which was closed due to non-feasibility. But, this would mean all the developers would...
## Describe the Feature Lombok is a popular system for reducing boilerplate code, especially in data-centric objects such as database entries. By annotating the class and/or member variables, it autogenerates...