From 9400cc3ba4aaf047cbee9fe91ea461b9d66f159d Mon Sep 17 00:00:00 2001 From: Ian Auld Date: Thu, 14 Jan 2016 11:30:18 -0800 Subject: [PATCH] Added LocalSecondaryIndexes to describe property --- moto/dynamodb2/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/moto/dynamodb2/models.py b/moto/dynamodb2/models.py index 77b1434c3..43059265c 100644 --- a/moto/dynamodb2/models.py +++ b/moto/dynamodb2/models.py @@ -184,6 +184,7 @@ class Table(object): 'ItemCount': len(self), 'CreationDateTime': unix_time(self.created_at), 'GlobalSecondaryIndexes': [index for index in self.global_indexes], + 'LocalSecondaryIndexes': [index for index in self.indexes] } } return results