Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Uint64 API

Co-authored-by: Kevin Albertson <[email protected]>
  • Loading branch information
adriandole and kevinAlbs authored Nov 22, 2024
1 parent e118c9b commit f363dfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/client-side-encryption/client-side-encryption.md
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ class AutoEncryptionOpts {
// Set bypassQueryAnalysis to true to use explicit encryption on indexed fields
// without the MongoDB Enterprise Advanced licensed crypt_shared library.
bypassQueryAnalysis: Optional<Boolean>; // Default false.
keyExpirationMS: Optiona<Int64>; // Default 60000.
keyExpirationMS: Optional<Uint64>; // Default 60000.
}
```

Expand Down Expand Up @@ -1049,7 +1049,7 @@ interface ClientEncryptionOpts {
keyVaultNamespace: String;
kmsProviders: KMSProviders;
tlsOptions?: KMSProvidersTLSOptions; // Maps KMS provider to TLS options.
keyExpirationMS: Optional<Int64>; // Default 60000.
keyExpirationMS: Optional<Uint64>; // Default 60000.
};

interface KMSProvidersTLSOptions {
Expand Down

0 comments on commit f363dfa

Please sign in to comment.