diff --git a/aws_quota/check/dynamodb.py b/aws_quota/check/dynamodb.py index 468c5e1..2285e1e 100644 --- a/aws_quota/check/dynamodb.py +++ b/aws_quota/check/dynamodb.py @@ -10,4 +10,4 @@ class TableCountCheck(QuotaCheck): @property def current(self): - return len(self.boto_session.client('dynamodb').list_tables()['TableNames']) + return self.count_paginated_results("dynamodb", "list_tables", "TableNames" )