Module Values.PipeTargetRedshiftDataParametersSource

These are custom parameters to be used when the target is a Amazon Redshift cluster to invoke the Amazon Redshift Data API BatchExecuteStatement.

Sourcetype nonrec t = {
  1. secretManagerArn : SecretManagerArnOrJsonPath.t option;
    (*

    The name or ARN of the secret that enables access to the database. Required when authenticating using Secrets Manager.

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

    The name of the database. Required when authenticating using temporary credentials.

    *)
  3. dbUser : DbUser.t option;
    (*

    The database user name. Required when authenticating using temporary credentials.

    *)
  4. statementName : StatementName.t option;
    (*

    The name of the SQL statement. You can name the SQL statement when you create it to identify the query.

    *)
  5. withEvent : Boolean.t option;
    (*

    Indicates whether to send an event back to EventBridge after the SQL statement runs.

    *)
  6. sqls : Sqls.t;
    (*

    The SQL statement text to run.

    *)
}
Sourceval context_ : string
Sourceval make : ?secretManagerArn:??? -> ?dbUser:??? -> ?statementName:??? -> ?withEvent:??? -> database:Database.t -> sqls:Sqls.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of Sql.t ] list | `String of SecretManagerArnOrJsonPath.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