2 Answers
- Newest
- Most votes
- Most comments
0
You can find the table's ARN in the console by opening the table and expanding the "Additional info" section under the "General information" section.
0
...found it ARN is easily constructed from your account and table details it's arn:aws:dynamodb:{region}:{userID}:table/{tableName}
answered a year ago
small correction, it's accountID instead of userID (i.e. a bit more general):
arn:aws:dynamodb:{region}:{accountID}:table/{tableName}
Relevant content
- asked a year ago
- AWS OFFICIALUpdated a year ago
thanks! I figured it out, it's easy to reconstruct with userID and table name but yes, very helpful.