I need to create a secondary index
on my DynamoDb
table. For this table, I have set the read/write capacity mode to On-demand
.
To query the data based on a particular column in the table, I want to create an index. ( this column is sort key, so I won't be able to perform queries only on this column)
When I created the index
through the DynamoDB console, by default the read capacity for this index is "on-demand"
.
I want to confirm how the pricing works for this index.
I was referring to this page - https://aws.amazon.com/dynamodb/pricing/
Will it be based on number of read and write operations on this index? I am assuming there will be no fixed cost (like provisioned capacity).