January 2019
Intermediate to advanced
490 pages
15h 37m
English
We will create a Lambda that gets triggered when messages are put into an SQS queue, and it will then send the message to another as a batch.
The Maven pom.xml file of the project should also define the following dependency:
<dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-sqs</artifactId> <version>${aws.sdk.version}</version></dependency>
We can create a Java Lambda project with the following structure:
Note that unlike previous recipes, we do not ...
Read now
Unlock full access