Module Values.SourceDataSettingSource

Defines settings for a source data provider for a data migration.

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

    The change data capture (CDC) start position for the source data provider.

    *)
  2. cDCStartTime : Iso8601DateTime.t option;
    (*

    The change data capture (CDC) start time for the source data provider.

    *)
  3. cDCStopTime : Iso8601DateTime.t option;
    (*

    The change data capture (CDC) stop time for the source data provider.

    *)
  4. slotName : String_.t option;
    (*

    The name of the replication slot on the source data provider. This attribute is only valid for a PostgreSQL or Aurora PostgreSQL source.

    *)
}
Sourceval make : ?cDCStartPosition:??? -> ?cDCStartTime:??? -> ?cDCStopTime:??? -> ?slotName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Timestamp of Iso8601DateTime.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