Amazon Glue · Schema

DeleteRegistryResponse

DeleteRegistryResponse schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
RegistryName object
RegistryArn object
Status object
View JSON Schema on GitHub

JSON Schema

glue-delete-registry-response-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-delete-registry-response-schema.json",
  "title": "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."
        }
      ]
    }
  }
}