Interface StoragePolicyConfig

interface StoragePolicyConfig {
    mode: StoragePolicyMode;
    protectedTables?: string[];
    exemptTables?: string[];
}

Properties

Which mode to enforce.

protectedTables?: string[]

Tables subject to policy enforcement. Empty array or undefined = all tables.

exemptTables?: string[]

Tables exempt from enforcement (e.g., cache, temp tables).