Amazon Glue · JSON Structure

Glue Update Dev Endpoint Request Structure

UpdateDevEndpointRequest schema from Amazon Glue API

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

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

Properties

EndpointName PublicKey AddPublicKeys DeletePublicKeys CustomLibraries UpdateEtlLibraries DeleteArguments AddArguments

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-update-dev-endpoint-request-structure.json",
  "name": "UpdateDevEndpointRequest",
  "description": "UpdateDevEndpointRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "EndpointName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "The name of the <code>DevEndpoint</code> to be updated."
        }
      ]
    },
    "PublicKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "The public key for the <code>DevEndpoint</code> to use."
        }
      ]
    },
    "AddPublicKeys": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PublicKeysList"
        },
        {
          "description": "The list of public keys for the <code>DevEndpoint</code> to use."
        }
      ]
    },
    "DeletePublicKeys": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PublicKeysList"
        },
        {
          "description": "The list of public keys to be deleted from the <code>DevEndpoint</code>."
        }
      ]
    },
    "CustomLibraries": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DevEndpointCustomLibraries"
        },
        {
          "description": "Custom Python or Java libraries to be loaded in the <code>DevEndpoint</code>."
        }
      ]
    },
    "UpdateEtlLibraries": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanValue"
        },
        {
          "description": " <code>True</code> if the list of custom libraries to be loaded in the development endpoint needs to be updated, or <code>False</code> if otherwise."
        }
      ]
    },
    "DeleteArguments": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringList"
        },
        {
          "description": "The list of argument keys to be deleted from the map of arguments used to configure the <code>DevEndpoint</code>."
        }
      ]
    },
    "AddArguments": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MapValue"
        },
        {
          "description": "<p>The map of arguments to add the map of arguments used to configure the <code>DevEndpoint</code>.</p> <p>Valid arguments are:</p> <ul> <li> <p> <code>\"--enable-glue-datacatalog\": \"\"</code> </p> </li> </ul> <p>You can specify a version of Python support for development endpoints by using the <code>Arguments</code> parameter in the <code>CreateDevEndpoint</code> or <code>UpdateDevEndpoint</code> APIs. If no arguments are provided, the version defaults to Python 2.</p>"
        }
      ]
    }
  },
  "required": [
    "EndpointName"
  ]
}