Values.DataMigrationSettingsSourceOptions for configuring a data migration, including whether to enable CloudWatch logs, and the selection rules to use to include or exclude database objects from the migration.
type nonrec t = {numberOfJobs : IntegerOptional.t option;The number of parallel jobs that trigger parallel threads to unload the tables from the source, and then load them to the target.
*)cloudwatchLogsEnabled : BooleanOptional.t option;Whether to enable CloudWatch logging for the data migration.
*)selectionRules : SecretString.t option;A JSON-formatted string that defines what objects to include and exclude from the migration.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BooleanOptional.t
| `Integer of IntegerOptional.t
| `String of SecretString.t ])
list ]