Amazon Glue · JSON Structure

Glue Update Blueprint Request Structure

UpdateBlueprintRequest schema from Amazon Glue API

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

UpdateBlueprintRequest 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

Name Description BlueprintLocation

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-update-blueprint-request-structure.json",
  "name": "UpdateBlueprintRequest",
  "description": "UpdateBlueprintRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrchestrationNameString"
        },
        {
          "description": "The name of the blueprint."
        }
      ]
    },
    "Description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Generic512CharString"
        },
        {
          "description": "A description of the blueprint."
        }
      ]
    },
    "BlueprintLocation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrchestrationS3Location"
        },
        {
          "description": "Specifies a path in Amazon S3 where the blueprint is published."
        }
      ]
    }
  },
  "required": [
    "Name",
    "BlueprintLocation"
  ]
}