in src/DynamoDBSessionStateStore.cs [906:914]
private TableConfig CreateTableConfig()
{
var tableConfig = CreateTableConfig(this._tableName);
if (!string.IsNullOrEmpty(this._ttlAttributeName))
{
tableConfig.AttributesToStoreAsEpoch.Add(this._ttlAttributeName);
}
return tableConfig;
}