Amazon CodeBuild · JSON Structure

Amazon Codebuild Start Build Request Structure

StartBuildRequest schema from Amazon CodeBuild

Type: object Properties: 3 Required: 1
AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

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

Properties

projectName sourceVersion environmentVariablesOverride

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-codebuild/refs/heads/main/json-structure/amazon-codebuild-start-build-request-structure.json",
  "name": "StartBuildRequest",
  "description": "StartBuildRequest schema from Amazon CodeBuild",
  "type": "object",
  "properties": {
    "projectName": {
      "type": "string",
      "description": "The name of the CodeBuild build project."
    },
    "sourceVersion": {
      "type": "string",
      "description": "The version of the build input to be built."
    },
    "environmentVariablesOverride": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "value": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        }
      }
    }
  },
  "required": [
    "projectName"
  ]
}