{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-structure/amazon-codebuild-update-project-visibility-input-structure.json", "name": "UpdateProjectVisibilityInput", "description": "UpdateProjectVisibilityInput schema from Amazon CodeBuild", "type": "object", "properties": { "projectArn": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "The Amazon Resource Name (ARN) of the build project." } ] }, "projectVisibility": { "$ref": "#/components/schemas/ProjectVisibilityType" }, "resourceAccessRole": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "The ARN of the IAM role that enables CodeBuild to access the CloudWatch Logs and Amazon S3 artifacts for the project's builds." } ] } }, "required": [ "projectArn", "projectVisibility" ] }