Amazon CodeStar · Schema

ToolchainSource

The Amazon S3 location where the toolchain template file provided with the project request is stored. AWS CodeStar retrieves the file during project creation.

Developer ToolsDevOpsProject ManagementTeam Collaboration

Properties

Name Type Description
s3 object
View JSON Schema on GitHub

JSON Schema

codestar-toolchain-source-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codestar/refs/heads/main/json-schema/codestar-toolchain-source-schema.json",
  "title": "ToolchainSource",
  "description": "The Amazon S3 location where the toolchain template file provided with the project request is stored. AWS CodeStar retrieves the file during project creation.",
  "type": "object",
  "properties": {
    "s3": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Location"
        },
        {
          "description": "The Amazon S3 bucket where the toolchain template file provided with the project request is stored."
        }
      ]
    }
  },
  "required": [
    "s3"
  ]
}