I tried to find that "How to check Amazon DynamoDB's availability and connectivity"
And I found some ways :
Availability Check
(1) Using CURL command
- When I using CURL command, that only return HTTP 200 status code.
- Command Example: curl -X GET -w "{"status": "%{http_code}", "response_time":"%{time_total}"}" https://dynamodb.us-west-1.amazonaws.com
- Result Example : healthy: dynamodb.us-west-2.amazonaws.com {status: 200, response_time:0.688000}
(2) Using AWS health API
Connectivity Check AWS health
(1) Ping Test
(2) Using JDBC, ODBC driver to connection Test
(3) Using ddbcli package
(4) Using AWS SDK
I can't using sdk and other ways.
Is there any way to check AWS DynamoDB's Health check like availability and connectivity?