Dynamo Db Table
data class DynamoDbTable(tableClass: KClass<*>, configureTable: (CreateTableRequest) -> CreateTableRequest)
Content copied to clipboard
Use this with DockerDynamoDbModule or InProcessDynamoDbModule to configure your DynamoDB tables for each test execution.
Use configureTable to customize the table creation request for testing, such as to configure the secondary indexes required by ProjectionType.ALL.
Constructors
Link copied to clipboard
fun DynamoDbTable(tableClass: KClass<*>, configureTable: (CreateTableRequest) -> CreateTableRequest = { it })
Content copied to clipboard