Module Values_1.DatabaseIdentifierSource

A structure that describes a target database for resource linking.

Sourcetype nonrec t = {
  1. catalogId : Values_0.CatalogIdString.t option;
    (*

    The ID of the Data Catalog in which the database resides.

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

    The name of the catalog database.

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

    Region of the target database.

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