Values.SybaseAseDataProviderSettingsSourceProvides information that defines an SAP ASE data provider.
type nonrec t = {serverName : String_.t option;The name of the SAP ASE server.
*)port : IntegerOptional.t option;The port value for the SAP ASE data provider.
*)databaseName : String_.t option;The database name on the SAP ASE data provider.
*)sslMode : DmsSslModeValue.t option;The SSL mode used to connect to the SAP ASE data provider. The default value is none.
*)encryptPassword : BooleanOptional.t option;Specifies whether to encrypt the password when connecting to the Sybase ASE database. When set to true, the connection password is encrypted during transmission. Default is true.
*)certificateArn : String_.t option;The Amazon Resource Name (ARN) of the certificate used for SSL connection.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BooleanOptional.t
| `Enum of string
| `Integer of IntegerOptional.t
| `String of String_.t ])
list ]