in source/clicklogger/src/main/java/com/clicklogs/Handlers/ClickLoggerStreamHandler.java [168:182]
private PutItemOutcome updateClickData(final ClickLogRequest clickLogRequest)
throws ConditionalCheckFailedException {
return dynamoDb.getTable(dynamo_table_name)
.putItem(
new PutItemSpec().withItem(new Item()
.withString("requestid", clickLogRequest.getRequestid())
.withString("contextid", clickLogRequest.getContextid())
.withString("callerid", clickLogRequest.getCallerid())
.withString("type", clickLogRequest.getType())
.withString("component", clickLogRequest.getComponent())
.withString("action", clickLogRequest.getAction())
.withString("createdtime", clickLogRequest.getCreatedtime())
.withString("clientip", clickLogRequest.getClientip())
.withString("user", clickLogRequest.getUser())));
}