Module Values_0.RedshiftTargetSource

Specifies a target that uses Amazon Redshift.

Sourcetype nonrec t = {
  1. name : NodeName.t;
    (*

    The name of the data target.

    *)
  2. inputs : OneInput.t;
    (*

    The nodes that are inputs to the data target.

    *)
  3. database : EnclosedInStringProperty.t;
    (*

    The name of the database to write to.

    *)
  4. table : EnclosedInStringProperty.t;
    (*

    The name of the table in the database to write to.

    *)
  5. redshiftTmpDir : EnclosedInStringProperty.t option;
    (*

    The Amazon S3 path where temporary data can be staged when copying out of the database.

    *)
  6. tmpDirIAMRole : EnclosedInStringProperty.t option;
    (*

    The IAM role with permissions.

    *)
  7. upsertRedshiftOptions : UpsertRedshiftTargetOptions.t option;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : ?redshiftTmpDir:??? -> ?tmpDirIAMRole:??? -> ?upsertRedshiftOptions:??? -> name:NodeName.t -> inputs:OneInput.t -> database:EnclosedInStringProperty.t -> table:EnclosedInStringProperty.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NodeId.t ] list | `String of NodeName.t | `Structure of (string * [> `List of [> `String of EnclosedInStringProperty.t ] list | `String of EnclosedInStringProperty.t ]) 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