Module Values.GlueDataSourceSource

Defines the Glue data source that contains the training data.

Sourcetype nonrec t = {
  1. tableName : GlueTableName.t;
    (*

    The Glue table that contains the training data.

    *)
  2. databaseName : GlueDatabaseName.t;
    (*

    The Glue database that contains the training data.

    *)
  3. catalogId : AccountId.t option;
    (*

    The Glue catalog that contains the training data.

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