OBJECT

MongodbSourceConfigParams

Description

Configuration parameters for the MongoDB source object.

link GraphQL Schema definition

  • type MongodbSourceConfigParams {
  • # List of seed hosts for establishing connection to source cluster.
  • mongodbHosts: [MongodbHost!]!
  • # We do not backup the secondary nodes if this configuration is true.
  • ignoreSecondaries: [MongodbHost!]!
  • # SSH Port.
  • sourceSshPort: Int!
  • # Username for MongoDB source .
  • sourceDbUser: String!
  • # SSH user name for the source nodes.
  • sourceNodeUser: String!
  • # SSL configuration for the source cluster.
  • sslOptions: MongodbSslOptions
  • }