Amazon Glue · JSON Structure

Glue Get Ml Task Runs Request Structure

GetMLTaskRunsRequest schema from Amazon Glue API

Type: object Properties: 5 Required: 1
AnalyticsData CatalogData IntegrationData PipelineETLServerless

GetMLTaskRunsRequest is a JSON Structure definition published by Amazon Glue, describing 5 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

TransformId NextToken MaxResults Filter Sort

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-structure/glue-get-ml-task-runs-request-structure.json",
  "name": "GetMLTaskRunsRequest",
  "description": "GetMLTaskRunsRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "TransformId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HashString"
        },
        {
          "description": "The unique identifier of the machine learning transform."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationToken"
        },
        {
          "description": "A token for pagination of the results. The default is empty."
        }
      ]
    },
    "MaxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PageSize"
        },
        {
          "description": "The maximum number of results to return. "
        }
      ]
    },
    "Filter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskRunFilterCriteria"
        },
        {
          "description": "The filter criteria, in the <code>TaskRunFilterCriteria</code> structure, for the task run."
        }
      ]
    },
    "Sort": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskRunSortCriteria"
        },
        {
          "description": "The sorting criteria, in the <code>TaskRunSortCriteria</code> structure, for the task run."
        }
      ]
    }
  },
  "required": [
    "TransformId"
  ]
}