Values.ReloadTablesMessageSourceReloads the target database table with the source data. You can only use this operation with a task in the RUNNING state, otherwise the service will throw an InvalidResourceStateFault exception.
type nonrec t = {replicationTaskArn : String_.t;The Amazon Resource Name (ARN) of the replication task.
*)tablesToReload : TableListToReload.t;The name and schema of the table to be reloaded.
*)reloadOption : ReloadOptionValue.t option;Options for reload. Specify data-reload to reload the data and re-validate it if validation is enabled. Specify validate-only to re-validate the table. This option applies only when validation is enabled for the task. Valid values: data-reload, validate-only Default value is data-reload.
*)}val make :
?reloadOption:??? ->
replicationTaskArn:String_.t ->
tablesToReload:TableListToReload.t ->
unit ->
t