Module Values_0.RedshiftSourceSource

Specifies an Amazon Redshift data store.

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

    The name of the Amazon Redshift data store.

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

    The database to read from.

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

    The database table to read from.

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

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

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

    The IAM role with permissions.

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