StartBlueprintRunRequest 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-start-blueprint-run-request-schema.json", "title": "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" ] }