MongoDbConnectionInfoArgs

data class MongoDbConnectionInfoArgs(val connectionString: Output<String>, val password: Output<String>? = null, val type: Output<String>, val userName: Output<String>? = null) : ConvertibleToJava<MongoDbConnectionInfoArgs>

Describes a connection to a MongoDB data source

Constructors

Link copied to clipboard
constructor(connectionString: Output<String>, password: Output<String>? = null, type: Output<String>, userName: Output<String>? = null)

Properties

Link copied to clipboard

A MongoDB connection string or blob container URL. The user name and password can be specified here or in the userName and password properties

Link copied to clipboard
val password: Output<String>? = null

Password credential.

Link copied to clipboard
val type: Output<String>

Type of connection info Expected value is 'MongoDbConnectionInfo'.

Link copied to clipboard
val userName: Output<String>? = null

User name

Functions

Link copied to clipboard
open override fun toJava(): MongoDbConnectionInfoArgs