1 Answer
- Newest
- Most votes
- Most comments
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
Relevant content
asked 6 years ago
asked 3 years ago
asked a year ago
- AWS OFFICIALUpdated 3 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 2 years ago

Thanks. How do I select TLS 1.3 over TLS 1.2?