Amazon Glue · Schema

CancelMLTaskRunResponse

CancelMLTaskRunResponse schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
TransformId object
TaskRunId object
Status object
View JSON Schema on GitHub

JSON Schema

glue-cancel-ml-task-run-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-cancel-ml-task-run-response-schema.json",
  "title": "CancelMLTaskRunResponse",
  "description": "CancelMLTaskRunResponse schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "TransformId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HashString"
        },
        {
          "description": "The unique identifier of the machine learning transform."
        }
      ]
    },
    "TaskRunId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HashString"
        },
        {
          "description": "The unique identifier for the task run."
        }
      ]
    },
    "Status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskStatusType"
        },
        {
          "description": "The status for this run."
        }
      ]
    }
  }
}