Module Values.MongoDbDataProviderSettingsSource

Provides information that defines a MongoDB data provider.

Sourcetype nonrec t = {
  1. serverName : String_.t option;
    (*

    The name of the MongoDB server.

    *)
  2. port : IntegerOptional.t option;
    (*

    The port value for the MongoDB data provider.

    *)
  3. databaseName : String_.t option;
    (*

    The database name on the MongoDB data provider.

    *)
  4. sslMode : DmsSslModeValue.t option;
    (*

    The SSL mode used to connect to the MongoDB data provider. The default value is none.

    *)
  5. certificateArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the certificate used for SSL connection.

    *)
  6. authType : AuthTypeValue.t option;
    (*

    The authentication type for the database connection. Valid values are PASSWORD or NO.

    *)
  7. authSource : String_.t option;
    (*

    The MongoDB database name. This setting isn't used when AuthType is set to "no". The default is "admin".

    *)
  8. authMechanism : AuthMechanismValue.t option;
    (*

    The authentication method for connecting to the data provider. Valid values are DEFAULT, MONGODB_CR, or SCRAM_SHA_1.

    *)
}
Sourceval make : ?serverName:??? -> ?port:??? -> ?databaseName:??? -> ?sslMode:??? -> ?certificateArn:??? -> ?authType:??? -> ?authSource:??? -> ?authMechanism:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of IntegerOptional.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t