Amazon CodeBuild · Schema

ProjectVisibilityType

Specifies the visibility of the project's builds. Possible values are:

PUBLIC_READ

The project builds are visible to the public.

PRIVATE

The project builds are not visible to the public.

AmazonCI/CDBuildContinuous IntegrationDevOpsTesting
View JSON Schema on GitHub

JSON Schema

amazon-codebuild-project-visibility-type-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-project-visibility-type-schema.json",
  "title": "ProjectVisibilityType",
  "description": "<p>Specifies the visibility of the project's builds. Possible values are:</p> <dl> <dt>PUBLIC_READ</dt> <dd> <p>The project builds are visible to the public.</p> </dd> <dt>PRIVATE</dt> <dd> <p>The project builds are not visible to the public.</p> </dd> </dl>",
  "type": "string",
  "enum": [
    "PUBLIC_READ",
    "PRIVATE"
  ]
}