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
I am using Spring Cloud SQS( spring-cloud-starter-aws-messaging ) in my application My listener method is annotated as below. But i see that sometimes, the listener is becoming stale or stopped...
**Is your feature request related to a problem? Please describe.** When processing background tasks that take long and having varying time to complete, it's not efficient to set the SQS...
(Bug | Misconfiguration ?) I'm using spring-boot 2.1.2 with spring-cloud-starter-aws-secrets-manager-config (2.1.1, tried with 2.1.2 also) and Greenwich release of spring cloud. I have followed the docs as described in documentation...
**Is your feature request related to a problem?** - Running the current integration tests requires spawning resources in AWS - The setup for this requires some manual effort (see [README](https://github.com/spring-cloud/spring-cloud-aws/blob/master/README.adoc))...
We are in the process of upgrading our services to Spring boot 2.0 with the reactive stack and found a problem configuring SNS in that scenario. It seems not possible...
I want to change message visibility `sqsClient.ChangeMessageVisibility(myEndpoint, myMessage.getReceiptHandle(), 60);` How to achieve this using @SqsListener ``` @SqsListener(value ="TEST",deletionPolicy = SqsMessageDeletionPolicy.ON_SUCCESS) public void getMessage(@Headers Map headers,String message) throws Exception { LOG.info("Message...
When application runs outside of EC2 instance and region is not specified in application properties, startup fails with `IllegalStateException`. This can be done in more developer friendly way using [Spring...
User should assume a role with the authentication to make all the AWS calls
It would be quite helpful if the spring-cloud-aws could provide a MeterRegistryCustomizer to automatically annotate micrometer metrics with dimensions based on the metadata from AWS (i.e Instance Type, Instance ID,...
I have a use case where I would like to customize the TaskExecutor that is used by the SimpleMessageListenerContainer. I would simply like to set a task decorator that is...