Module Values_1.GetDatabasesRequestSource

Retrieves all databases defined in a given Data Catalog.

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

    The ID of the Data Catalog from which to retrieve Databases. If none is provided, the Amazon Web Services account ID is used by default.

    *)
  2. nextToken : Token.t option;
    (*

    A continuation token, if this is a continuation call.

    *)
  3. maxResults : Values_0.CatalogGetterPageSize.t option;
    (*

    The maximum number of databases to return in one response.

    *)
  4. resourceShareType : ResourceShareType.t option;
    (*

    Allows you to specify that you want to list the databases shared with your account. The allowable values are FEDERATED, FOREIGN or ALL. If set to FEDERATED, will list the federated databases (referencing an external entity) shared with your account. If set to FOREIGN, will list the databases shared with your account. If set to ALL, will list the databases shared with your account, as well as the databases in yor local account.

    *)
  5. attributesToGet : DatabaseAttributesList.t option;
    (*

    Specifies the database fields returned by the GetDatabases call. This parameter doesn’t accept an empty list. The request must include the NAME.

    *)
}
Sourceval make : ?catalogId:??? -> ?nextToken:??? -> ?maxResults:??? -> ?resourceShareType:??? -> ?attributesToGet:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.CatalogGetterPageSize.t | `List of [> `Enum of string ] list | `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