Module Values_2.UpdateIntegrationTablePropertiesRequestSource

This API is used to provide optional override properties for the tables that need to be replicated. These properties can include properties for filtering and partitioning for the source and target tables. To set both source and target properties the same API need to be invoked with the Glue connection ARN as ResourceArn with SourceTableConfig, and the Glue database ARN as ResourceArn with TargetTableConfig respectively. The override will be reflected across all the integrations using same ResourceArn and source table.

Sourcetype nonrec t = {
  1. resourceArn : Values_1.String512.t;
    (*

    The connection ARN of the source, or the database ARN of the target.

    *)
  2. tableName : Values_1.String128.t;
    (*

    The name of the table to be replicated.

    *)
  3. sourceTableConfig : Values_1.SourceTableConfig.t option;
    (*

    A structure for the source table configuration.

    *)
  4. targetTableConfig : Values_1.TargetTableConfig.t option;
    (*

    A structure for the target table configuration.

    *)
}
Sourceval context_ : string
Sourceval make : ?sourceTableConfig:??? -> ?targetTableConfig:??? -> resourceArn:Values_1.String512.t -> tableName:Values_1.String128.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_1.String512.t | `Structure of (string * [> `Enum of string | `List of [> `String of string | `Structure of (string * [> `String of string ]) list ] list | `String of string ]) list ]) 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