{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-get-crawler-metrics-request-schema.json",
"title": "GetCrawlerMetricsRequest",
"description": "GetCrawlerMetricsRequest schema from Amazon Glue API",
"type": "object",
"properties": {
"CrawlerNameList": {
"allOf": [
{
"$ref": "#/components/schemas/CrawlerNameList"
},
{
"description": "A list of the names of crawlers about which to retrieve metrics."
}
]
},
"MaxResults": {
"allOf": [
{
"$ref": "#/components/schemas/PageSize"
},
{
"description": "The maximum size of a list to return."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/Token"
},
{
"description": "A continuation token, if this is a continuation call."
}
]
}
}
}