Module Values_1.FederatedDatabaseSource

A database 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 database.

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

    The name of the connection to the external metastore.

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

    The type of connection used to access the federated database, such as JDBC, ODBC, or other supported connection protocols.

    *)
}
Sourceval make : ?identifier:??? -> ?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