Values.DatabaseOutputSourceRepresents a JDBC database output object which defines the output destination for a DataBrew recipe job to write into.
type nonrec t = {glueConnectionName : GlueConnectionName.t;The Glue connection that stores the connection information for the target database.
*)databaseOptions : DatabaseTableOutputOptions.t;Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.
*)databaseOutputMode : DatabaseOutputMode.t option;The output mode to write into the database. Currently supported option: NEW_TABLE.
*)}val make :
?databaseOutputMode:??? ->
glueConnectionName:GlueConnectionName.t ->
databaseOptions:DatabaseTableOutputOptions.t ->
unit ->
tval 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 ]