Module Values.ReloadTablesMessageSource

Reloads 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.

Sourcetype nonrec t = {
  1. replicationTaskArn : String_.t;
    (*

    The Amazon Resource Name (ARN) of the replication task.

    *)
  2. tablesToReload : TableListToReload.t;
    (*

    The name and schema of the table to be reloaded.

    *)
  3. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?reloadOption:??? -> replicationTaskArn:String_.t -> tablesToReload:TableListToReload.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t