Class: Aws::CodeBuild::Types::UpdateProjectVisibilityInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::UpdateProjectVisibilityInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#project_arn ⇒ String
The Amazon Resource Name (ARN) of the build project.
-
#project_visibility ⇒ String
Specifies the visibility of the project’s builds.
-
#resource_access_role ⇒ String
The ARN of the IAM role that enables CodeBuild to access the CloudWatch Logs and Amazon S3 artifacts for the project’s builds.
Instance Attribute Details
#project_arn ⇒ String
The Amazon Resource Name (ARN) of the build project.
6874 6875 6876 6877 6878 6879 6880 |
# File 'lib/aws-sdk-codebuild/types.rb', line 6874 class UpdateProjectVisibilityInput < Struct.new( :project_arn, :project_visibility, :resource_access_role) SENSITIVE = [] include Aws::Structure end |
#project_visibility ⇒ String
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.
6874 6875 6876 6877 6878 6879 6880 |
# File 'lib/aws-sdk-codebuild/types.rb', line 6874 class UpdateProjectVisibilityInput < Struct.new( :project_arn, :project_visibility, :resource_access_role) SENSITIVE = [] include Aws::Structure end |
#resource_access_role ⇒ String
The ARN of the IAM role that enables CodeBuild to access the CloudWatch Logs and Amazon S3 artifacts for the project’s builds.
6874 6875 6876 6877 6878 6879 6880 |
# File 'lib/aws-sdk-codebuild/types.rb', line 6874 class UpdateProjectVisibilityInput < Struct.new( :project_arn, :project_visibility, :resource_access_role) SENSITIVE = [] include Aws::Structure end |