Values.DocDbDataProviderSettingsSourceProvides information that defines a DocumentDB data provider.
type nonrec t = {serverName : String_.t option;The name of the source DocumentDB server.
*)port : IntegerOptional.t option;The port value for the DocumentDB data provider.
*)databaseName : String_.t option;The database name on the DocumentDB data provider.
*)sslMode : DmsSslModeValue.t option;The SSL mode used to connect to the DocumentDB data provider. The default value is none.
*)certificateArn : String_.t option;The Amazon Resource Name (ARN) of the certificate used for SSL connection.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of IntegerOptional.t
| `String of String_.t ])
list ]