Describe Dynamodb Table at Local Installation using endpoint URL?

蓝咒 提交于 2021-01-28 08:01:10

问题


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 Only.



来源:https://stackoverflow.com/questions/42314522/describe-dynamodb-table-at-local-installation-using-endpoint-url

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!