Amazon CodeStar · Schema

CodeCommitCodeDestination

Information about the AWS CodeCommit repository to be created in AWS CodeStar. This is where the source code files provided with the project request will be uploaded after project creation.

Developer ToolsDevOpsProject ManagementTeam Collaboration

Properties

Name Type Description
name object
View JSON Schema on GitHub

JSON Schema

codestar-code-commit-code-destination-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-code-commit-code-destination-schema.json",
  "title": "CodeCommitCodeDestination",
  "description": "Information about the AWS CodeCommit repository to be created in AWS CodeStar. This is where the source code files provided with the project request will be uploaded after project creation.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RepositoryName"
        },
        {
          "description": "The name of the AWS CodeCommit repository to be created in AWS CodeStar."
        }
      ]
    }
  },
  "required": [
    "name"
  ]
}