Module Values.GetTableMetadataInputSource

Returns table metadata for the specified catalog, database, and table.

Sourcetype nonrec t = {
  1. catalogName : CatalogNameString.t;
    (*

    The name of the data catalog that contains the database and table metadata to return.

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

    The name of the database that contains the table metadata to return.

    *)
  3. tableName : NameString.t;
    (*

    The name of the table for which metadata is returned.

    *)
  4. workGroup : WorkGroupName.t option;
    (*

    The name of the workgroup for which the metadata is being fetched. Required if requesting an IAM Identity Center enabled Glue Data Catalog.

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