Click or drag to resize

AutoEncryptionOptions Constructor

Initializes a new instance of the AutoEncryptionOptions class.

Namespace:  MongoDB.Driver.Encryption
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
Syntax
public AutoEncryptionOptions(
	CollectionNamespace keyVaultNamespace,
	IReadOnlyDictionary<string, IReadOnlyDictionary<string, Object>> kmsProviders,
	Optional<bool> bypassAutoEncryption = null,
	Optional<IReadOnlyDictionary<string, Object>> extraOptions = null,
	Optional<IMongoClient> keyVaultClient = null,
	Optional<IReadOnlyDictionary<string, BsonDocument>> schemaMap = null,
	Optional<IReadOnlyDictionary<string, SslSettings>> tlsOptions = null,
	Optional<IReadOnlyDictionary<string, BsonDocument>> encryptedFieldsMap = null,
	Optional<Nullable<bool>> bypassQueryAnalysis = null
)

Parameters

keyVaultNamespace
Type: MongoDB.DriverCollectionNamespace
The keyVault namespace.
kmsProviders
Type: System.Collections.GenericIReadOnlyDictionaryString, IReadOnlyDictionaryString, Object
The kms providers.
bypassAutoEncryption (Optional)
Type: MongoDB.DriverOptionalBoolean
The bypass auto encryption flag.
extraOptions (Optional)
Type: MongoDB.DriverOptionalIReadOnlyDictionaryString, Object
The extra options.
keyVaultClient (Optional)
Type: MongoDB.DriverOptionalIMongoClient
The keyVault client.
schemaMap (Optional)
Type: MongoDB.DriverOptionalIReadOnlyDictionaryString, BsonDocument
The schema map.
tlsOptions (Optional)
Type: MongoDB.DriverOptionalIReadOnlyDictionaryString, SslSettings
The tls options.
encryptedFieldsMap (Optional)
Type: MongoDB.DriverOptionalIReadOnlyDictionaryString, BsonDocument
The encryptedFields map.
bypassQueryAnalysis (Optional)
Type: MongoDB.DriverOptionalNullableBoolean
The bypass query analysis flag.
See Also