Amazon Glue · JSON Structure

Glue Start Blueprint Run Request Structure

StartBlueprintRunRequest schema from Amazon Glue API

Type: object Properties: 3 Required: 2
AnalyticsData CatalogData IntegrationData PipelineETLServerless

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

Properties

BlueprintName Parameters RoleArn

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-start-blueprint-run-request-structure.json",
  "name": "StartBlueprintRunRequest",
  "description": "StartBlueprintRunRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "BlueprintName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrchestrationNameString"
        },
        {
          "description": "The name of the blueprint."
        }
      ]
    },
    "Parameters": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BlueprintParameters"
        },
        {
          "description": "Specifies the parameters as a <code>BlueprintParameters</code> object."
        }
      ]
    },
    "RoleArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrchestrationIAMRoleArn"
        },
        {
          "description": "Specifies the IAM role used to create the workflow."
        }
      ]
    }
  },
  "required": [
    "BlueprintName",
    "RoleArn"
  ]
}