1 Answer
- Newest
- Most votes
- Most comments
1
Describing the entire schema is not possible with DynamoDB, not without a table Scan. As DynamoDB's schema is flexible, there can be an unbounded number of attributes, unlike RDBMS where it is bounded and known.
Alternatively, if all of your items use the same schema, you can do a Scan with Limit=1
which will only Scan a single item, and you can obtain the attribute names from there.
Relevant content
- asked a year ago
- AWS OFFICIALUpdated 10 months ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 5 months ago
- AWS OFFICIALUpdated 4 months ago