Values.ModifyDataProviderMessageSourceModifies the specified data provider using the provided settings. You must remove the data provider from all migration projects before you can modify it.
type nonrec t = {dataProviderIdentifier : String_.t;The identifier of the data provider. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.
*)dataProviderName : String_.t option;The name of the data provider.
*)description : String_.t option;A user-friendly description of the data provider.
*)engine : String_.t option;The type of database engine for the data provider. Valid values include "aurora", "aurora-postgresql", "mysql", "oracle", "postgres", "sqlserver", redshift, mariadb, mongodb, db2, db2-zos, docdb, and sybase. A value of "aurora" represents Amazon Aurora MySQL-Compatible Edition.
*)virtual_ : BooleanOptional.t option;Indicates whether the data provider is virtual.
*)exactSettings : BooleanOptional.t option;If this attribute is Y, the current call to ModifyDataProvider replaces all existing data provider settings with the exact settings that you specify in this call. If this attribute is N, the current call to ModifyDataProvider does two things: It replaces any data provider settings that already exist with new values, for settings with the same names. It creates new data provider settings that you specify in the call, for settings with different names.
*)settings : DataProviderSettings.t option;The settings in JSON format for a data provider.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BooleanOptional.t
| `String of String_.t
| `Structure of
(string
* [> `Structure of
(string
* [> `Boolean of BooleanOptional.t
| `Enum of string
| `Integer of IntegerOptional.t
| `String of String_.t ])
list ])
list ])
list ]