January 2019
Intermediate to advanced
490 pages
15h 37m
English
Let's discuss the steps to create a table from Lambda without repeating the common steps we already discussed:
The Request object for the lambda-dynamodb-create-table Lambda is defined as follows:
@Datapublic class Request { private String tableName; private String partitionKey; private String sortKey; private long readCapacityUnits; private long writeCapacityUnits; private boolean waitForActive;}
The Response object is common to all Lambdas, as discussed in the Using the DynamoDB SDK from Lambda recipe.
A table can be created using the DynamoDB ...
Read now
Unlock full access