Module Values.GlueTableReferenceSource

A reference to a table within an Glue data catalog.

Sourcetype nonrec t = {
  1. region : CommercialRegion.t option;
    (*

    The Amazon Web Services Region where the Glue table is located. This parameter is required to uniquely identify and access tables across different Regions.

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

    The name of the Glue table.

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

    The name of the database the Glue table belongs to.

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