Amazon Glue · Schema

UpdateDevEndpointRequest

UpdateDevEndpointRequest schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
EndpointName object
PublicKey object
AddPublicKeys object
DeletePublicKeys object
CustomLibraries object
UpdateEtlLibraries object
DeleteArguments object
AddArguments object
View JSON Schema on GitHub

JSON Schema

glue-update-dev-endpoint-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-update-dev-endpoint-request-schema.json",
  "title": "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"
  ]
}