Module Values.DatabaseTableOutputOptionsSource

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

Sourcetype nonrec t = {
  1. tempDirectory : S3Location.t option;
    (*

    Represents an Amazon S3 location (bucket name and object key) where DataBrew can store intermediate results.

    *)
  2. tableName : DatabaseTableName.t;
    (*

    A prefix for the name of a table DataBrew will create in the database.

    *)
}
Sourceval context_ : string
Sourceval make : ?tempDirectory:??? -> tableName:DatabaseTableName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DatabaseTableName.t | `Structure of (string * [> `String of Bucket.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