Amazon Glue · Schema

GetMappingRequest

GetMappingRequest schema from Amazon Glue API

AnalyticsData CatalogData IntegrationData PipelineETLServerless

Properties

Name Type Description
Source object
Sinks object
Location object
View JSON Schema on GitHub

JSON Schema

glue-get-mapping-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-get-mapping-request-schema.json",
  "title": "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"
  ]
}