Enum ProjectVisibility
Specifies the visibility of the project's builds.
Namespace: Amazon.CDK.AWS.CodeBuild
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum ProjectVisibility
Syntax (vb)
Public Enum ProjectVisibility
Remarks
ExampleMetadata: infused
Examples
new Project(this, "MyProject", new ProjectProps {
Visibility = ProjectVisibility.PUBLIC_READ
});
Synopsis
Fields
PRIVATE | The project builds are not visible to the public. |
PUBLIC_READ | The project builds are visible to the public. |
Fields
Name | Description |
---|---|
PRIVATE | The project builds are not visible to the public. |
PUBLIC_READ | The project builds are visible to the public. |