Amazon Glue · Schema

GetMLTaskRunsResponse

GetMLTaskRunsResponse schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
TaskRuns object
NextToken object
View JSON Schema on GitHub

JSON Schema

glue-get-ml-task-runs-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-get-ml-task-runs-response-schema.json",
  "title": "GetMLTaskRunsResponse",
  "description": "GetMLTaskRunsResponse schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "TaskRuns": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskRunList"
        },
        {
          "description": "A list of task runs that are associated with the transform."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationToken"
        },
        {
          "description": "A pagination token, if more results are available."
        }
      ]
    }
  }
}