Amazon Glue · Schema

GetBlueprintRunRequest

GetBlueprintRunRequest schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

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

JSON Schema

glue-get-blueprint-run-request-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-blueprint-run-request-schema.json",
  "title": "GetBlueprintRunRequest",
  "description": "GetBlueprintRunRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "BlueprintName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrchestrationNameString"
        },
        {
          "description": "The name of the blueprint."
        }
      ]
    },
    "RunId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdString"
        },
        {
          "description": "The run ID for the blueprint run you want to retrieve."
        }
      ]
    }
  },
  "required": [
    "BlueprintName",
    "RunId"
  ]
}