Amazon Glue · Schema

CreateRegistryResponse

CreateRegistryResponse schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

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

JSON Schema

glue-create-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-create-registry-response-schema.json",
  "title": "CreateRegistryResponse",
  "description": "CreateRegistryResponse schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "RegistryArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GlueResourceArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the newly created registry."
        }
      ]
    },
    "RegistryName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SchemaRegistryNameString"
        },
        {
          "description": "The name of the registry."
        }
      ]
    },
    "Description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DescriptionString"
        },
        {
          "description": "A description of the registry."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagsMap"
        },
        {
          "description": "The tags for the registry."
        }
      ]
    }
  }
}