Amazon Glue · JSON Structure

Glue Delete Registry Response Structure

DeleteRegistryResponse schema from Amazon Glue API

Type: object Properties: 3
AnalyticsData CatalogData IntegrationData PipelineETLServerless

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

Properties

RegistryName RegistryArn Status

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-delete-registry-response-structure.json",
  "name": "DeleteRegistryResponse",
  "description": "DeleteRegistryResponse schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "RegistryName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SchemaRegistryNameString"
        },
        {
          "description": "The name of the registry being deleted."
        }
      ]
    },
    "RegistryArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GlueResourceArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the registry being deleted."
        }
      ]
    },
    "Status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RegistryStatus"
        },
        {
          "description": "The status of the registry. A successful operation will return the <code>Deleting</code> status."
        }
      ]
    }
  }
}