Module Values_0.UpsertRedshiftTargetOptionsSource

The options to configure an upsert operation when writing to a Redshift target .

Sourcetype nonrec t = {
  1. tableLocation : EnclosedInStringProperty.t option;
    (*

    The physical location of the Redshift table.

    *)
  2. connectionName : EnclosedInStringProperty.t option;
    (*

    The name of the connection to use to write to Redshift.

    *)
  3. upsertKeys : EnclosedInStringPropertiesMinOne.t option;
    (*

    The keys used to determine whether to perform an update or insert.

    *)
}
Sourceval make : ?tableLocation:??? -> ?connectionName:??? -> ?upsertKeys:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of EnclosedInStringProperty.t ] list | `String of EnclosedInStringProperty.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