Amazon Glue · JSON Structure

Glue Create Partition Request Structure

CreatePartitionRequest schema from Amazon Glue API

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

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

Properties

CatalogId DatabaseName TableName PartitionInput

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-create-partition-request-structure.json",
  "name": "CreatePartitionRequest",
  "description": "CreatePartitionRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "CatalogId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CatalogIdString"
        },
        {
          "description": "The Amazon Web Services account ID of the catalog in which the partition is to be created."
        }
      ]
    },
    "DatabaseName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the metadata database in which the partition is to be created."
        }
      ]
    },
    "TableName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the metadata table in which the partition is to be created."
        }
      ]
    },
    "PartitionInput": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PartitionInput"
        },
        {
          "description": "A <code>PartitionInput</code> structure defining the partition to be created."
        }
      ]
    }
  },
  "required": [
    "DatabaseName",
    "TableName",
    "PartitionInput"
  ]
}