spring-cloud-aws
spring-cloud-aws copied to clipboard
All development has moved to https://github.com/awspring/spring-cloud-aws Integration for Amazon Web Services APIs with Spring
[assuming roles](http://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRole.html) is another way to authenticate. `ContextCredentialsAutoConfiguration` could check for `cloud.aws.credentials.roleArn` and `cloud.aws.credentials.roleSessionName` and wrap the `AWSCredentialsProvider` created in `ContextConfigurationUtils.registerCredentialsProvider(..)` with a `STSAssumeRoleSessionCredentialsProvider`
Bug Report I am referring to the below feature: https://github.com/spring-cloud/spring-cloud-aws/issues/271 I am using spring-cloud-starter-aws (1.2.2.RELEASE). In the project I wanted to use AWS FIFO queues and used the QueueMessagingTemplate's send(String...
Spring give us the possibility to set the property **spring.jackson.property-naming-strategy.** When setting to **SNAKE_CASE** the expectation is that all fields much have that format. But want happens is that the...
Can you please add the implementation to have multiple threads polling one queue. As of today only one thread polls right. Here is the problem, During a busy hour ,As...
**Describe the bug** In: spring-cloud-aws-core 2.2.3-RELEASE The URL returned by `SimpleStorageResource.getURL()` is produced with the following code: ``` Region region = this.amazonS3.getRegion().toAWSRegion(); String encodedObjectName = URLEncoder.encode(this.objectName, StandardCharsets.UTF_8.toString()); return new URL("https",...
## Background I'm using `QueueMessagingTemplate` to send and receive messages to/from an SQS queue. Receive happens in an infinite loop that regularly polls the queue. However, when there are no...
**Describe the bug** When running in AWS ECS Fargate, my spring boot app using spring cloud AWS is not able to get region from instance metadata. From AWS documentation, it...
**Is your feature request related to a problem? Please describe.** I would like to define a priority in `@SqsListener` so that messages from certain high priority queues are given precedence...
I have created a Spring boot application where I want to use AWS secrets for application.properties. I am using spring boot 2.2.6.RELEASE and as per the documentation I have added...
**Question** I wanted to know if there is a way to increase the no of listener threads that are listening for messages in the queue. I see that we can...