/reportingDDB

Reporting using DynamoDB

Primary LanguageJava

Sample project for Reporting using DynamoDB

Start the local DynamoDB instance running in Docker

sudo docker run -d -p 8000:8000 amazon/dynamodb-local

Further information about running DynamoDB can be found here.

Populate the Customer Data

For populating data in Customer:

  • Use Rest API to populate data by using request body below on this Endpoint

{ "enterpriseId": "99991", "customerName": "Test Customer Name - 2", "description": "Description = 1" }

  • Other way is to run PopulateQueryCustomerList

Getting data for Customer

These are the endpoints to get data:

Populate the SupportMessage Data

For populating data in SupportMessage:

  • Use Rest API to populate data by using request body below on this Endpoint

{ "department": "payments", "urgency": 10, "message": "Test 2" }

  • Other way is to run PopulateQueryMessages

Getting data for SupportMessage

These are the endpoints to get data: