January 2019
Intermediate to advanced
490 pages
15h 37m
English
Let's discuss the steps to add data items from Lambda without repeating the common steps we already discussed:
The Request object for the lambda-dynamodb-put-item lambda is defined as follows:
@Datapublic class Request { private String tableName; private String partitionKey; private String sortKey; private String partitionKeyValue; private Integer sortKeyValue; private boolean waitForActive; private Map<String, String> stringData; private Map<String, Integer> integerData;}
I have added two maps, one for string types and one for integer types. The Response object is common to all ...
Read now
Unlock full access