Amazon Glue · JSON Structure

Glue Create Classifier Request Structure

CreateClassifierRequest schema from Amazon Glue API

Type: object Properties: 4
AnalyticsData CatalogData IntegrationData PipelineETLServerless

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

Properties

GrokClassifier XMLClassifier JsonClassifier CsvClassifier

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-classifier-request-structure.json",
  "name": "CreateClassifierRequest",
  "description": "CreateClassifierRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "GrokClassifier": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreateGrokClassifierRequest"
        },
        {
          "description": "A <code>GrokClassifier</code> object specifying the classifier to create."
        }
      ]
    },
    "XMLClassifier": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreateXMLClassifierRequest"
        },
        {
          "description": "An <code>XMLClassifier</code> object specifying the classifier to create."
        }
      ]
    },
    "JsonClassifier": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreateJsonClassifierRequest"
        },
        {
          "description": "A <code>JsonClassifier</code> object specifying the classifier to create."
        }
      ]
    },
    "CsvClassifier": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreateCsvClassifierRequest"
        },
        {
          "description": "A <code>CsvClassifier</code> object specifying the classifier to create."
        }
      ]
    }
  }
}