January 2019
Intermediate to advanced
490 pages
15h 37m
English
We will create a Lambda that will receive messages from one queue, send it to another as a batch, and then delete the retrieved messages.
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 the Java Lambda project with the following structure:
The Request.java class will correspond to our ...
Read now
Unlock full access