Amazon Glue · JSON Structure

Glue Get User Defined Functions Request Structure

GetUserDefinedFunctionsRequest schema from Amazon Glue API

Type: object Properties: 5 Required: 1
AnalyticsData CatalogData IntegrationData PipelineETLServerless

GetUserDefinedFunctionsRequest is a JSON Structure definition published by Amazon Glue, describing 5 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

CatalogId DatabaseName Pattern NextToken MaxResults

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-user-defined-functions-request-structure.json",
  "name": "GetUserDefinedFunctionsRequest",
  "description": "GetUserDefinedFunctionsRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "CatalogId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CatalogIdString"
        },
        {
          "description": "The ID of the Data Catalog where the functions to be retrieved are located. If none is provided, the Amazon Web Services account ID is used by default."
        }
      ]
    },
    "DatabaseName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the catalog database where the functions are located. If none is provided, functions from all the databases across the catalog will be returned."
        }
      ]
    },
    "Pattern": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "An optional function-name pattern string that filters the function definitions returned."
        }
      ]
    },
    "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 functions to return in one response."
        }
      ]
    }
  },
  "required": [
    "Pattern"
  ]
}