Amazon Glue · JSON Structure

Glue Get Mapping Request Structure

GetMappingRequest schema from Amazon Glue API

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

GetMappingRequest 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

Source Sinks Location

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-mapping-request-structure.json",
  "name": "GetMappingRequest",
  "description": "GetMappingRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "Source": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CatalogEntry"
        },
        {
          "description": "Specifies the source table."
        }
      ]
    },
    "Sinks": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CatalogEntries"
        },
        {
          "description": "A list of target tables."
        }
      ]
    },
    "Location": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Location"
        },
        {
          "description": "Parameters for the mapping."
        }
      ]
    }
  },
  "required": [
    "Source"
  ]
}