Skip to content

DynamoDB - Encryption In Transit

0

Does Amazon Dynamodb use TLS 1.2 or 1.3?

AWS

asked a year ago247 views

1 Answer
1

DynamoDB supports both TLS 1.2 and 1.3. You can test it using the below curl command:

curl https://dynamodb.us-east-1.amazonaws.com \
  -X POST \
  -H "Content-Type: application/x-amz-json-1.0" \
  -H "X-Amz-Target: DynamoDB_20120810.ListTables" \
  -d '{}' \
  -v

And look for a line similar to SSL connection using TLSv1.3

AWS
EXPERT

answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.