Values.MongoDbDataProviderSettingsSourceProvides information that defines a MongoDB data provider.
type nonrec t = {serverName : String_.t option;The name of the MongoDB server.
*)port : IntegerOptional.t option;The port value for the MongoDB data provider.
*)databaseName : String_.t option;The database name on the MongoDB data provider.
*)sslMode : DmsSslModeValue.t option;The SSL mode used to connect to the MongoDB data provider. The default value is none.
*)certificateArn : String_.t option;The Amazon Resource Name (ARN) of the certificate used for SSL connection.
*)authType : AuthTypeValue.t option;The authentication type for the database connection. Valid values are PASSWORD or NO.
*)authSource : String_.t option;The MongoDB database name. This setting isn't used when AuthType is set to "no". The default is "admin".
*)authMechanism : AuthMechanismValue.t option;The authentication method for connecting to the data provider. Valid values are DEFAULT, MONGODB_CR, or SCRAM_SHA_1.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of IntegerOptional.t
| `String of String_.t ])
list ]