Amazon CodeBuild · Schema

UpdateProjectInput

UpdateProjectInput schema from Amazon CodeBuild

AmazonCI/CDBuildsContinuous IntegrationDevOpsTesting

Properties

Name Type Description
name object
description object
source object
secondarySources object
sourceVersion object
secondarySourceVersions object
artifacts object
secondaryArtifacts object
cache object
environment object
serviceRole object
timeoutInMinutes object
queuedTimeoutInMinutes object
encryptionKey object
tags object
vpcConfig object
badgeEnabled object
logsConfig object
fileSystemLocations object
buildBatchConfig object
concurrentBuildLimit object
View JSON Schema on GitHub

JSON Schema

amazon-codebuild-update-project-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-schema/amazon-codebuild-update-project-input-schema.json",
  "title": "UpdateProjectInput",
  "description": "UpdateProjectInput schema from Amazon CodeBuild",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "<p>The name of the build project.</p> <note> <p>You cannot change a build project's name.</p> </note>"
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectDescription"
        },
        {
          "description": "A new or replacement description of the build project."
        }
      ]
    },
    "source": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectSource"
        },
        {
          "description": "Information to be changed about the build input source code for the build project."
        }
      ]
    },
    "secondarySources": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectSources"
        },
        {
          "description": " An array of <code>ProjectSource</code> objects. "
        }
      ]
    },
    "sourceVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "<p> A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of: </p> <ul> <li> <p>For CodeCommit: the commit ID, branch, or Git tag to use.</p> </li> <li> <p>For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format <code>pr/pull-request-ID</code> (for example <code>pr/25</code>). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.</p> </li> <li> <p>For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.</p> </li> <li> <p>For Amazon S3: the version ID of the object that represents the build input ZIP file to use.</p> </li> </ul> <p> If <code>sourceVersion</code> is specified at the build level, then that version takes precedence over this <code>sourceVersion</code> (at the project level). </p> <p> For more information, see <a href=\"https://docs.aws.amazon.com/codebuild/latest/userguide/sample-source-version.html\">Source Version Sample with CodeBuild</a> in the <i>CodeBuild User Guide</i>. </p>"
        }
      ]
    },
    "secondarySourceVersions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectSecondarySourceVersions"
        },
        {
          "description": " An array of <code>ProjectSourceVersion</code> objects. If <code>secondarySourceVersions</code> is specified at the build level, then they take over these <code>secondarySourceVersions</code> (at the project level). "
        }
      ]
    },
    "artifacts": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectArtifacts"
        },
        {
          "description": "Information to be changed about the build output artifacts for the build project."
        }
      ]
    },
    "secondaryArtifacts": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectArtifactsList"
        },
        {
          "description": " An array of <code>ProjectArtifact</code> objects. "
        }
      ]
    },
    "cache": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectCache"
        },
        {
          "description": "Stores recently used information so that it can be quickly accessed at a later time."
        }
      ]
    },
    "environment": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectEnvironment"
        },
        {
          "description": "Information to be changed about the build environment for the build project."
        }
      ]
    },
    "serviceRole": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The replacement ARN of the IAM role that enables CodeBuild to interact with dependent Amazon Web Services services on behalf of the Amazon Web Services account."
        }
      ]
    },
    "timeoutInMinutes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TimeOut"
        },
        {
          "description": "The replacement value in minutes, from 5 to 480 (8 hours), for CodeBuild to wait before timing out any related build that did not get marked as completed."
        }
      ]
    },
    "queuedTimeoutInMinutes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TimeOut"
        },
        {
          "description": " The number of minutes a build is allowed to be queued before it times out. "
        }
      ]
    },
    "encryptionKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "<p>The Key Management Service customer master key (CMK) to be used for encrypting the build output artifacts.</p> <note> <p> You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. </p> </note> <p>You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format <code>alias/&lt;alias-name&gt;</code>). </p>"
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "<p>An updated list of tag key and value pairs associated with this build project.</p> <p>These tags are available for use by Amazon Web Services services that support CodeBuild build project tags.</p>"
        }
      ]
    },
    "vpcConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VpcConfig"
        },
        {
          "description": "VpcConfig enables CodeBuild to access resources in an Amazon VPC."
        }
      ]
    },
    "badgeEnabled": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WrapperBoolean"
        },
        {
          "description": "Set this to true to generate a publicly accessible URL for your project's build badge."
        }
      ]
    },
    "logsConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LogsConfig"
        },
        {
          "description": " Information about logs for the build project. A project can create logs in CloudWatch Logs, logs in an S3 bucket, or both. "
        }
      ]
    },
    "fileSystemLocations": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectFileSystemLocations"
        },
        {
          "description": " An array of <code>ProjectFileSystemLocation</code> objects for a CodeBuild build project. A <code>ProjectFileSystemLocation</code> object specifies the <code>identifier</code>, <code>location</code>, <code>mountOptions</code>, <code>mountPoint</code>, and <code>type</code> of a file system created using Amazon Elastic File System. "
        }
      ]
    },
    "buildBatchConfig": {
      "$ref": "#/components/schemas/ProjectBuildBatchConfig"
    },
    "concurrentBuildLimit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WrapperInt"
        },
        {
          "description": "<p>The maximum number of concurrent builds that are allowed for this project.</p> <p>New builds are only started if the current number of builds is less than or equal to this limit. If the current build count meets this limit, new builds are throttled and are not run.</p> <p>To remove this limit, set this value to -1.</p>"
        }
      ]
    }
  },
  "required": [
    "name"
  ]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/amazon-codebuild-update-project-input"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.