Home > Software engineering >  How to use endpoint for dynamodb table?
How to use endpoint for dynamodb table?

Time:09-30

I don't need to set up the DAX cluster which already provides an endpoint to connect to. I only need to connect to this dynamodb table from an internal service. But the table doesn't expose a URL to connect to. Can someone help?

CodePudding user response:

You just use AWS SDK's dynamodb interface, e.g. client in boto3. All the endpoints for the dynamodb are already provided by default in the SDKs, so you don't have to explicitly specify it.

The endpoints for dynamodb are listed here.

  • Related