aws-sdk-java-v2
aws-sdk-java-v2 copied to clipboard
The official AWS SDK for Java - Version 2
### Describe the bug There is very little information about the new token counting feature for Bedrock. It seems to work for basic text, which is cute, but the difficult...
## Motivation and Context Adds `downloadFileWithPresignedUrl` and `downloadWithPresignedUrl` methods to S3TransferManager ## Modifications Added two new public API methods in S3TransferManager with consumer builder variants Implemented presigned URL download logic...
### Describe the bug When working with QBusinessAsyncClient async chat method and later closing the client we were receiving exceptions due to timeouts waiting for the pool closure from software.amazon.awssdk.http.nio.netty.internal.AwaitCloseChannelPoolMap#close....
## Motivation and Context This fixes a bug flagged by https://errorprone.info/bugpattern/StringJoin ## Modifications Removes an unnecessary/misleading `String.join()` call. ## Testing n/a ## Screenshots (if appropriate) n/a ## Types of changes...
### Describe the bug Unbounded memory and socket retention due to AWS SDK Netty NioSocketChannel leak under high-concurrency S3 async operations. Description: When performing high-throughput, parallel S3 object locking operations...
### Describe the feature Provide the ability to dynamically specify the name of the index when using the @DynamoDbSecondaryPartitionKey which today only allows for static definition of the index name....
AutoDefaultsModeDiscovery changes to use Ec2MetadataClient ## Motivation and Context This change migrates IMDS-backed providers from using internal utilities to the public Ec2MetadataClient API. - AutoDefaultsModeDiscovery currently uses the internal EC2MetadataUtils...
### Describe the bug The SqsAsyncClient (non batch) throws an exception on the following call: ``` sqsAsyncClient.receiveMessage( ReceiveMessageRequest.builder() .queueUrl(queueUrl) .maxNumberOfMessages(11) .build()).join(); // Exception: software.amazon.awssdk.services.sqs.model.SqsException: Value 11 for parameter MaxNumberOfMessages is...