Amazon Glue · JSON Structure

Glue Get Blueprint Runs Request Structure

GetBlueprintRunsRequest schema from Amazon Glue API

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

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

Properties

BlueprintName NextToken MaxResults

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-get-blueprint-runs-request-structure.json",
  "name": "GetBlueprintRunsRequest",
  "description": "GetBlueprintRunsRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "BlueprintName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the blueprint."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "A continuation token, if this is a continuation request."
        }
      ]
    },
    "MaxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PageSize"
        },
        {
          "description": "The maximum size of a list to return."
        }
      ]
    }
  },
  "required": [
    "BlueprintName"
  ]
}