"""Constants for dynamodb connector and helper methods.""" from typing import Final LIFESPAN_TEST_IDENTITY_UUID = "no.such.hash.key" # DYNAMODB_BATCH_WRITE_ITEM_SIZE is a DynamoDB API constraint. # It should not be modified by an environment variable. DYNAMODB_BATCH_WRITE_ITEM_SIZE = 25 DYNAMODB_BATCH_WRITE_ITEM_RESPONSE_KEY_UNPROCESSED_ITEMS: Final = "UnprocessedItems"