Amazon CodeStar · JSON Structure

Codestar Code Source Structure

The location where the source code files provided with the project request are stored. AWS CodeStar retrieves the files during project creation.

Type: object Properties: 1 Required: 1
Developer ToolsDevOpsProject ManagementTeam Collaboration

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

Properties

s3

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-codestar/refs/heads/main/json-structure/codestar-code-source-structure.json",
  "name": "CodeSource",
  "description": "The location where the source code files provided with the project request are stored. AWS CodeStar retrieves the files during project creation.",
  "type": "object",
  "properties": {
    "s3": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Location"
        },
        {
          "description": "Information about the Amazon S3 location where the source code files provided with the project request are stored. "
        }
      ]
    }
  },
  "required": [
    "s3"
  ]
}