Module Values.MongoDbSettingsSource

Provides information that defines a MongoDB endpoint.

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

    The user name you use to access the MongoDB source endpoint.

    *)
  2. password : SecretString.t option;
    (*

    The password for the user account you use to access the MongoDB source endpoint.

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

    The name of the server on the MongoDB source endpoint. For MongoDB Atlas, provide the server name for any of the servers in the replication set.

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

    The port value for the MongoDB source endpoint.

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

    The database name on the MongoDB source endpoint.

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

    The authentication type you use to access the MongoDB source endpoint. When when set to "no", user name and password parameters are not used and can be empty.

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

    The authentication mechanism you use to access the MongoDB source endpoint. For the default value, in MongoDB version 2.x, "default" is "mongodb_cr". For MongoDB version 3.x or later, "default" is "scram_sha_1". This setting isn't used when AuthType is set to "no".

    *)
  8. nestingLevel : NestingLevelValue.t option;
    (*

    Specifies either document or table mode. Default value is "none". Specify "none" to use document mode. Specify "one" to use table mode.

    *)
  9. extractDocId : String_.t option;
    (*

    Specifies the document ID. Use this setting when NestingLevel is set to "none". Default value is "false".

    *)
  10. docsToInvestigate : String_.t option;
    (*

    Indicates the number of documents to preview to determine the document organization. Use this setting when NestingLevel is set to "one". Must be a positive value greater than 0. Default value is 1000.

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

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

    *)
  12. kmsKeyId : String_.t option;
    (*

    The KMS key identifier that is used to encrypt the content on the replication instance. If you don't specify a value for the KmsKeyId parameter, then DMS uses your default encryption key. KMS creates the default encryption key for your Amazon Web Services account. Your Amazon Web Services account has a different default encryption key for each Amazon Web Services Region.

    *)
  13. secretsManagerAccessRoleArn : String_.t option;
    (*

    The full Amazon Resource Name (ARN) of the IAM role that specifies DMS as the trusted entity and grants the required permissions to access the value in SecretsManagerSecret. The role must allow the iam:PassRole action. SecretsManagerSecret has the value of the Amazon Web Services Secrets Manager secret that allows access to the MongoDB endpoint. You can specify one of two sets of values for these permissions. You can specify the values for this setting and SecretsManagerSecretId. Or you can specify clear-text values for UserName, Password, ServerName, and Port. You can't specify both. For more information on creating this SecretsManagerSecret and the SecretsManagerAccessRoleArn and SecretsManagerSecretId required to access it, see Using secrets to access Database Migration Service resources in the Database Migration Service User Guide.

    *)
  14. secretsManagerSecretId : String_.t option;
    (*

    The full ARN, partial ARN, or friendly name of the SecretsManagerSecret that contains the MongoDB endpoint connection details.

    *)
  15. useUpdateLookUp : BooleanOptional.t option;
    (*

    If true, DMS retrieves the entire document from the MongoDB source during migration. This may cause a migration failure if the server response exceeds bandwidth limits. To fetch only updates and deletes during migration, set this parameter to false.

    *)
  16. replicateShardCollections : BooleanOptional.t option;
    (*

    If true, DMS replicates data to shard collections. DMS only uses this setting if the target endpoint is a DocumentDB elastic cluster. When this setting is true, note the following: You must set TargetTablePrepMode to nothing. DMS automatically sets useUpdateLookup to false.

    *)
}
Sourceval make : ?username:??? -> ?password:??? -> ?serverName:??? -> ?port:??? -> ?databaseName:??? -> ?authType:??? -> ?authMechanism:??? -> ?nestingLevel:??? -> ?extractDocId:??? -> ?docsToInvestigate:??? -> ?authSource:??? -> ?kmsKeyId:??? -> ?secretsManagerAccessRoleArn:??? -> ?secretsManagerSecretId:??? -> ?useUpdateLookUp:??? -> ?replicateShardCollections:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `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