Amazon Glue · Schema

ResumeWorkflowRunResponse

ResumeWorkflowRunResponse schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
RunId object
NodeIds object
View JSON Schema on GitHub

JSON Schema

glue-resume-workflow-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-resume-workflow-run-response-schema.json",
  "title": "ResumeWorkflowRunResponse",
  "description": "ResumeWorkflowRunResponse schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "RunId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdString"
        },
        {
          "description": "The new ID assigned to the resumed workflow run. Each resume of a workflow run will have a new run ID."
        }
      ]
    },
    "NodeIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NodeIdList"
        },
        {
          "description": "A list of the node IDs for the nodes that were actually restarted."
        }
      ]
    }
  }
}