Module Values_1.FederatedTableSource

A table that points to an entity outside the Glue Data Catalog.

Sourcetype nonrec t = {
  1. identifier : Values_0.FederationIdentifier.t option;
    (*

    A unique identifier for the federated table.

    *)
  2. databaseIdentifier : Values_0.FederationIdentifier.t option;
    (*

    A unique identifier for the federated database.

    *)
  3. connectionName : Values_0.NameString.t option;
    (*

    The name of the connection to the external metastore.

    *)
  4. connectionType : Values_0.NameString.t option;
    (*

    The type of connection used to access the federated table, specifying the protocol or method for connecting to the external data source.

    *)
}
Sourceval make : ?identifier:??? -> ?databaseIdentifier:??? -> ?connectionName:??? -> ?connectionType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.FederationIdentifier.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