somesh
somesh

Reputation: 2579

Adding new Local Secondary Index to an existing DynamoDB table

Is it possible to add a new Local Secondary Index to an existing DynamoDB table?

Upvotes: 26

Views: 13980

Answers (1)

Eyal Ch
Eyal Ch

Reputation: 10056

no, you cant do it, only adding global secondary index is possible to an existing table.

from documentation:

Local secondary indexes on a table are created when the table is created. 

Upvotes: 37

Related Questions