StartProjectSessionResponse

StartProjectSessionResponse schema from Amazon Glue DataBrew API

Data AnalyticsData PreparationETLMachine Learning

Properties

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

JSON Schema

glue-databrew-start-project-session-response-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-start-project-session-response-schema.json",
  "title": "StartProjectSessionResponse",
  "description": "StartProjectSessionResponse schema from Amazon Glue DataBrew API",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectName"
        },
        {
          "description": "The name of the project to be acted upon."
        }
      ]
    },
    "ClientSessionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ClientSessionId"
        },
        {
          "description": "A system-generated identifier for the session."
        }
      ]
    }
  },
  "required": [
    "Name"
  ]
}