Amazon Glue DataBrew · JSON Structure

Glue Databrew Describe Recipe Response Structure

DescribeRecipeResponse schema from Amazon Glue DataBrew API

Type: object Properties: 13 Required: 1
Data AnalyticsData PreparationETLMachine Learning

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

Properties

CreatedBy CreateDate LastModifiedBy LastModifiedDate ProjectName PublishedBy PublishedDate Description Name Steps Tags ResourceArn RecipeVersion

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-databrew/refs/heads/main/json-structure/glue-databrew-describe-recipe-response-structure.json",
  "name": "DescribeRecipeResponse",
  "description": "DescribeRecipeResponse schema from Amazon Glue DataBrew API",
  "type": "object",
  "properties": {
    "CreatedBy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreatedBy"
        },
        {
          "description": "The identifier (user name) of the user who created the recipe."
        }
      ]
    },
    "CreateDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Date"
        },
        {
          "description": "The date and time that the recipe was created."
        }
      ]
    },
    "LastModifiedBy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LastModifiedBy"
        },
        {
          "description": "The identifier (user name) of the user who last modified the recipe."
        }
      ]
    },
    "LastModifiedDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Date"
        },
        {
          "description": "The date and time that the recipe was last modified."
        }
      ]
    },
    "ProjectName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectName"
        },
        {
          "description": "The name of the project associated with this recipe."
        }
      ]
    },
    "PublishedBy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PublishedBy"
        },
        {
          "description": "The identifier (user name) of the user who last published the recipe."
        }
      ]
    },
    "PublishedDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Date"
        },
        {
          "description": "The date and time when the recipe was last published."
        }
      ]
    },
    "Description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RecipeDescription"
        },
        {
          "description": "The description of the recipe."
        }
      ]
    },
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RecipeName"
        },
        {
          "description": "The name of the recipe."
        }
      ]
    },
    "Steps": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RecipeStepList"
        },
        {
          "description": "One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "Metadata tags associated with this project."
        }
      ]
    },
    "ResourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The ARN of the recipe."
        }
      ]
    },
    "RecipeVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RecipeVersion"
        },
        {
          "description": "The recipe version identifier."
        }
      ]
    }
  },
  "required": [
    "Name"
  ]
}