Module Values_1.SourceTableConfigSource

Properties used by the source leg to process data from the source.

Sourcetype nonrec t = {
  1. fields : SourceTableFieldsList.t option;
    (*

    A list of fields used for column-level filtering. Currently unsupported.

    *)
  2. filterPredicate : String128.t option;
    (*

    A condition clause used for row-level filtering. Currently unsupported.

    *)
  3. primaryKey : PrimaryKeyList.t option;
    (*

    Provide the primary key set for this table. Currently supported specifically for SAP EntityOf entities upon request. Contact Amazon Web Services Support to make this feature available.

    *)
  4. recordUpdateField : String128.t option;
    (*

    Incremental pull timestamp-based field. Currently unsupported.

    *)
}
Sourceval make : ?fields:??? -> ?filterPredicate:??? -> ?primaryKey:??? -> ?recordUpdateField:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String128.t ] list | `String of String128.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