@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
11 lines • 497 B
TypeScript
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