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/
If `@DynamoDBMarshalling` is marked as deprecated, then you should also take the recommended `@DynamoDBTypeConverted` into account as well. Currently, there's no way to add `@DynamoDBTypeConvertedJson` to the unmarshallerSet https://github.com/aws/aws-sdk-java/blob/master/aws-java-sdk-dynamodb/src/main/java/com/amazonaws/services/dynamodbv2/datamodeling/ConversionSchemas.java#L1301
Calling `close` method on `GetMediaResult` input stream takes a long time for long streams. ``` var result = mediaClient.getMedia(new GetMediaRequest().withStreamName(streamName).withStartSelector(new StartSelector().withStartSelectorType("EARLIEST"))); r.getPayload().close(); ``` Here is [repo with tests](https://bitbucket.org/chatterbubble/amazon-kvs/src/master/) to reproduce...
I've been trying to track down a memory leak on our tomcat system when deploying/undeploying servlets and it seems to be caused by building the AmazonDynamoDB client. I built a...
## Describe the Feature Actually there is no way to refresh the AWS credentials when using the WebIdentityTokenCredentialsProvider. (Or maybe I didn't find it?) ## Is your Feature Request related...
I was debugging an issue where my metrics weren't being uploaded to CloudWatch (TL;DR, I wasn't using the BOM in order to ensure I have compatible SDK versions). It would...
Even when `endpointDiscoveryDisabled` is set to `true`, `DEFAULT_ENDPOINT_DISCOVERY_PROVIDER` still goes through default endpoint discovery providers, loads profiles, etc. This PR changes `endpointDiscoveryEnabled` behavior to exit early. In case when endpoint...
I am initiating a copy by calling TransferManager.copy with a CopyObjectRequest, an AmazonS3 (client), and a TransferStateChangeListener. When the TransferManager's transferStateChange method is called, I check to see if the...
## Describe the bug When you disable CBOR `Kinesis::GetShardIterator` using `AT_TIMESTAMP` does not work. ## Expected Behavior Request is accepted and shard iterator is returned ## Current Behavior ``` com.amazonaws.services.kinesis.model.InvalidArgumentException:...
*Issue #, if available:* #2340 *Description of changes:* Adds explicit UTF-8 encoding for string to bytes transformation of the signature string, otherwise the verification will fail with certain characters and...
Currently we have a use case where we are saving a client for reuse and sometimes change its endpoint. Because setEndpoint is deprecated in favour of builder, we cannot provide...