Amazon Glue · JSON Structure

Glue Get Databases Request Structure

GetDatabasesRequest schema from Amazon Glue API

Type: object Properties: 4
AnalyticsData CatalogData IntegrationData PipelineETLServerless

GetDatabasesRequest is a JSON Structure definition published by Amazon Glue, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

CatalogId NextToken MaxResults ResourceShareType

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-structure/glue-get-databases-request-structure.json",
  "name": "GetDatabasesRequest",
  "description": "GetDatabasesRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "CatalogId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CatalogIdString"
        },
        {
          "description": "The ID of the Data Catalog from which to retrieve <code>Databases</code>. If none is provided, the Amazon Web Services account ID is used by default."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Token"
        },
        {
          "description": "A continuation token, if this is a continuation call."
        }
      ]
    },
    "MaxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CatalogGetterPageSize"
        },
        {
          "description": "The maximum number of databases to return in one response."
        }
      ]
    },
    "ResourceShareType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceShareType"
        },
        {
          "description": "<p>Allows you to specify that you want to list the databases shared with your account. The allowable values are <code>FEDERATED</code>, <code>FOREIGN</code> or <code>ALL</code>. </p> <ul> <li> <p>If set to <code>FEDERATED</code>, will list the federated databases (referencing an external entity) shared with your account.</p> </li> <li> <p>If set to <code>FOREIGN</code>, will list the databases shared with your account. </p> </li> <li> <p>If set to <code>ALL</code>, will list the databases shared with your account, as well as the databases in yor local account. </p> </li> </ul>"
        }
      ]
    }
  }
}