Amazon Glue · Schema

BatchGetCustomEntityTypesResponse

BatchGetCustomEntityTypesResponse schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
CustomEntityTypes object
CustomEntityTypesNotFound object
View JSON Schema on GitHub

JSON Schema

glue-batch-get-custom-entity-types-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-get-custom-entity-types-response-schema.json",
  "title": "BatchGetCustomEntityTypesResponse",
  "description": "BatchGetCustomEntityTypesResponse schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "CustomEntityTypes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CustomEntityTypes"
        },
        {
          "description": "A list of <code>CustomEntityType</code> objects representing the custom patterns that have been created."
        }
      ]
    },
    "CustomEntityTypesNotFound": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CustomEntityTypeNames"
        },
        {
          "description": "A list of the names of custom patterns that were not found."
        }
      ]
    }
  }
}