UNPKG

@azure/cosmos

Version:
11 lines 497 B
import type { EncryptionKeyResolver } from "./index.js"; /** * Represents the encryption options associated with a CosmosClient. */ export interface ClientEncryptionOptions { /** resolver that allows interaction with key encryption keys. */ keyEncryptionKeyResolver: EncryptionKeyResolver; /** time for which encryption keys and settings will be cached. Default is 7200 seconds */ encryptionKeyTimeToLiveInSeconds?: number; } //# sourceMappingURL=ClientEncryptionOptions.d.ts.map