sdgfsdh
sdgfsdh

Reputation: 37095

How do I access my AWS-hosted DynamoDB tables on my development machine?

I have some DynamoDB tables hosted on AWS. I would like to query these tables from my development machine for analysis. However, I cannot find a connection string (or any connection information for that matter) in the AWS web console.

How do I connect to DynamoDB on AWS from my own machine?

Upvotes: 1

Views: 4134

Answers (1)

Matt Houser
Matt Houser

Reputation: 36073

DynamoDB does not have a connection string.

Instead, you use one of the various AWS SDKs (in the language of your choice) along with your AWS IAM user access key and secret pair.

The SDKs include the methods to query your DynamoDB tables.

Upvotes: 6

Related Questions