Is it possible to create GSI on an existing table programmatically from java? I know that its possible while creating a new table using
dynamoDB.createTable(new CreateTableRequest().withGlobalSecondaryIndexes(index));
I also know that it is possible to create index after creating table from web.