Module Values.DatabaseOutputSource

Represents a JDBC database output object which defines the output destination for a DataBrew recipe job to write into.

Sourcetype nonrec t = {
  1. glueConnectionName : GlueConnectionName.t;
    (*

    The Glue connection that stores the connection information for the target database.

    *)
  2. databaseOptions : DatabaseTableOutputOptions.t;
    (*

    Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.

    *)
  3. databaseOutputMode : DatabaseOutputMode.t option;
    (*

    The output mode to write into the database. Currently supported option: NEW_TABLE.

    *)
}
Sourceval context_ : string
Sourceval make : ?databaseOutputMode:??? -> glueConnectionName:GlueConnectionName.t -> databaseOptions:DatabaseTableOutputOptions.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of GlueConnectionName.t | `Structure of (string * [> `String of DatabaseTableName.t | `Structure of (string * [> `String of Bucket.t ]) list ]) 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