UpdateRecipeRequest

UpdateRecipeRequest schema from Amazon Glue DataBrew API

Data AnalyticsData PreparationETLMachine Learning

Properties

Name Type Description
Description object
Steps object
View JSON Schema on GitHub

JSON Schema

glue-databrew-update-recipe-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue-databrew/refs/heads/main/json-schema/glue-databrew-update-recipe-request-schema.json",
  "title": "UpdateRecipeRequest",
  "description": "UpdateRecipeRequest schema from Amazon Glue DataBrew API",
  "type": "object",
  "properties": {
    "Description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RecipeDescription"
        },
        {
          "description": "A description 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."
        }
      ]
    }
  }
}