CancelMLTaskRunResponse schema from Amazon Glue API
{ "$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." } ] } } }