Values.MariaDbDataProviderSettingsSourceProvides information that defines a MariaDB data provider.
type nonrec t = {serverName : String_.t option;The name of the MariaDB server.
*)port : IntegerOptional.t option;The port value for the MariaDB data provider
*)sslMode : DmsSslModeValue.t option;The SSL mode used to connect to the MariaDB data provider. The default value is none.
*)certificateArn : String_.t option;The Amazon Resource Name (ARN) of the certificate used for SSL connection.
*)s3Path : String_.t option;The path for the Amazon S3 bucket that the application uses for accessing the user-defined schema.
*)s3AccessRoleArn : String_.t option;The ARN for the role the application uses to access its Amazon S3 bucket.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of IntegerOptional.t
| `String of String_.t ])
list ]