You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Configuration entry for a database",
384
+
"oneOf": [
385
+
{
386
+
"type": "object",
387
+
"name": "MongoDB Config",
388
+
"description": "Connection properties for mongoDB. Options may be passed in either the connection string or broken out in the options object",
389
+
"properties": {
390
+
"type": { "type": "string", "const": "mongo" },
391
+
"enabled": { "type": "boolean" },
392
+
"connectionString": {
393
+
"type": "string",
394
+
"description": "mongoDB Client connection string, see https://www.mongodb.com/docs/manual/reference/connection-string/"
395
+
},
396
+
"options": {
397
+
"type": "object",
398
+
"description": "mongoDB Client connection options. Please note that only custom options are described here, see https://www.mongodb.com/docs/drivers/node/current/connect/connection-options/ for all config options.",
399
+
"properties": {
400
+
"authMechanismProperties": {
401
+
"type": "object",
402
+
"properties": {
403
+
"AWS_CREDENTIAL_PROVIDER": {
404
+
"type": "boolean",
405
+
"description": "If set to true fromNodeProviderChain() from @aws-sdk/credential-providers is passed as the AWS_CREDENTIAL_PROVIDER"
0 commit comments