lambda/src/main/java/cn/amazon/aws/rp/spapi/dynamodb/impl/FinancesDao.java [93:100]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public static String updateTableName() {
		// Update the table name from environment. It is expected to be set by CDK script on Lambda.
		final String tableName = Utils.getEnv("DYNAMODB_FINANCES_TABLE");
		if (tableName != null) {
			TABLE_NAME = tableName;
		}
		return TABLE_NAME;
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lambda/src/main/java/cn/amazon/aws/rp/spapi/dynamodb/impl/ReportsDao.java [58:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static String updateTableName() {
        // Update the table name from environment. It is expected to be set by CDK script on Lambda.
        final String tableName = Utils.getEnv("DYNAMODB_REPORTS_TABLE");
        if (tableName != null) {
            TABLE_NAME = tableName;
        }
        return TABLE_NAME;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lambda/src/main/java/cn/amazon/aws/rp/spapi/dynamodb/impl/SpApiSecretDao.java [93:100]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static String getSellerSecretsTableName() {
        // Update the table name from environment. It is expected to be set by CDK script on Lambda.
        final String tableName = Utils.getEnv("DYNAMODB_SECRETS_TABLE");
        if (tableName != null) {
            TABLE_NAME = tableName;
        }
        return TABLE_NAME;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lambda/src/main/java/cn/amazon/aws/rp/spapi/dynamodb/impl/SpApiTaskDao.java [124:131]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public static String getTaskTableName() {
		// Update the table name from environment. It is expected to be set by CDK script on Lambda.
		final String tableName = Utils.getEnv("DYNAMODB_TASK_TABLE");
		if (tableName != null) {
			TABLE_NAME = tableName;
		}
		return TABLE_NAME;
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lambda/src/main/java/cn/amazon/aws/rp/spapi/dynamodb/impl/OrdersDao.java [65:72]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static String updateTableName() {
        // Update the table name from environment. It is expected to be set by CDK script on Lambda.
        final String tableName = Utils.getEnv("DYNAMODB_ORDERS_TABLE");
        if (tableName != null) {
            TABLE_NAME = tableName;
        }
        return TABLE_NAME;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



