Amazon Glue · JSON Structure

Glue Update Job From Source Control Request Structure

UpdateJobFromSourceControlRequest schema from Amazon Glue API

Type: object Properties: 9
AnalyticsData CatalogData IntegrationData PipelineETLServerless

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

Properties

JobName Provider RepositoryName RepositoryOwner BranchName Folder CommitId AuthStrategy AuthToken

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-update-job-from-source-control-request-structure.json",
  "name": "UpdateJobFromSourceControlRequest",
  "description": "UpdateJobFromSourceControlRequest schema from Amazon Glue API",
  "type": "object",
  "properties": {
    "JobName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the Glue job to be synchronized to or from the remote repository."
        }
      ]
    },
    "Provider": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SourceControlProvider"
        },
        {
          "description": "The provider for the remote repository."
        }
      ]
    },
    "RepositoryName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the remote repository that contains the job artifacts."
        }
      ]
    },
    "RepositoryOwner": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The owner of the remote repository that contains the job artifacts."
        }
      ]
    },
    "BranchName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "An optional branch in the remote repository."
        }
      ]
    },
    "Folder": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "An optional folder in the remote repository."
        }
      ]
    },
    "CommitId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CommitIdString"
        },
        {
          "description": "A commit ID for a commit in the remote repository."
        }
      ]
    },
    "AuthStrategy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SourceControlAuthStrategy"
        },
        {
          "description": "The type of authentication, which can be an authentication token stored in Amazon Web Services Secrets Manager, or a personal access token."
        }
      ]
    },
    "AuthToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AuthTokenString"
        },
        {
          "description": "The value of the authorization token."
        }
      ]
    }
  }
}