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 use ``` AmazonS3ClientBuilder.standard() .withClientConfiguration(clientConfiguration()) .build(); ``` to build AmazonS3 where ``` private ClientConfiguration clientConfiguration() { ConnectionPool connectionPool = awsProperties.getS3().getConnectionPool(); return PredefinedClientConfigurations.defaultConfig() .withMaxConnections(connectionPool.getMaxConnections()) .withConnectionTTL(connectionPool.getConnectionTtl()); } ``` ## Describe the bug...
## Describe the bug The `ClientConfiguration` gets the client configuration from the system based on the protocol type other than proxy protocol type. If the user sets the protocol with...
## Describe the bug While trying to unmarshal s3eventnotification message to S3EventNotification.S3EventNotificationRecord using below line, getting error. unmarshal().json(JsonLibrary.Jackson, S3EventNotification.S3EventNotificationRecord.class) ## Expected Behavior S3event message should unmarshal to the object. ##...
## Describe the issue The [AWSCredentialsProviderChain](https://github.com/aws/aws-sdk-java/blob/ddd779290c509df04f5ba6ad70b09db5ab457ee0/aws-java-sdk-core/src/main/java/com/amazonaws/auth/AWSCredentialsProviderChain.java#L126-L134) swallows exceptions thrown by any providers in the chain and moves on to the next provider. In the case of a Kubernetes Pod on...
## Describe the issue There is no way to attach listener right during upload resume initiation. So it means possible loss of events until listener will be attached via `upload::addProgressListener`...
We are looking to implement a encryption scheme for our services where we would like to allow developers to have an easy way of telling us they want an field...
I've analysed your codebase and noticed that `com.amazonaws.util.BinaryUtils` and `StringUtils` is not fully tested. I've written some tests for the methods in this class with the help of [Diffblue Cover](https://www.diffblue.com/opensource)....
## Describe the bug We are using AmazonS3EncryptionClient to persist objects to the S3 bucket and since we switched to the Bouncy Castle (BC) FIPS provider, we started seeing this...
## Describe the Feature The STS client classes don't provide a programmatic way to configure/toggle the legacy endpoint behavior. AFAICT the only ways to configure this behavior (in class `com.amazonaws.services.securitytoken.RegionalEndpointsOptionResolver`)...
There are numerous overlaps between the features that Spring exposes and AWS provides. For example, we could integrate any number of the various AWS databases with spring-data. [spring-cloud-aws](https://github.com/awspring/spring-cloud-aws) currently provides...