Amazon Glue · Schema

BatchGetCrawlersRequest

BatchGetCrawlersRequest schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
CrawlerNames object
View JSON Schema on GitHub

JSON Schema

glue-batch-get-crawlers-request-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-crawlers-request-schema.json",
  "title": "BatchGetCrawlersRequest",
  "description": "BatchGetCrawlersRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "CrawlerNames": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CrawlerNameList"
        },
        {
          "description": "A list of crawler names, which might be the names returned from the <code>ListCrawlers</code> operation."
        }
      ]
    }
  },
  "required": [
    "CrawlerNames"
  ]
}