Module Values_1.TargetTableConfigSource

Properties used by the target leg to partition the data on the target.

Sourcetype nonrec t = {
  1. unnestSpec : UnnestSpec.t option;
    (*

    Specifies how nested objects are flattened to top-level elements. Valid values are: "TOPLEVEL", "FULL", or "NOUNNEST".

    *)
  2. partitionSpec : IntegrationPartitionSpecList.t option;
    (*

    Determines the file layout on the target.

    *)
  3. targetTableName : String128.t option;
    (*

    The optional name of a target table.

    *)
}
Sourceval make : ?unnestSpec:??? -> ?partitionSpec:??? -> ?targetTableName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String128.t ]) list ] 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