Amazon Glue · Schema

BatchDeleteConnectionResponse

BatchDeleteConnectionResponse schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
Succeeded object
Errors object
View JSON Schema on GitHub

JSON Schema

glue-batch-delete-connection-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-batch-delete-connection-response-schema.json",
  "title": "BatchDeleteConnectionResponse",
  "description": "BatchDeleteConnectionResponse schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "Succeeded": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameStringList"
        },
        {
          "description": "A list of names of the connection definitions that were successfully deleted."
        }
      ]
    },
    "Errors": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ErrorByName"
        },
        {
          "description": "A map of the names of connections that were not successfully deleted to error details."
        }
      ]
    }
  }
}