Describe Dynamodb Table at Local Installation using endpoint URL?
问题 I have Installed DynamoDB Local Instance on my machine, I want to Describe DynamoDB Tables which are created at this Local Instance of DynamoDB, How can I achieve this ? 回答1: You Need to have installed awscli on your machine. Steps to install awscli : Click Here After Installing, Run below command to Describe DynamoDb Table : aws dynamodb describe-table --table-name tableName --endpoint-url http://localhost:8000 Note : Here --endpoint-url is Optional & Used for Local DynamoDB Installation