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.
      7159 7160 7161 7162 7163 7164 7165  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 7159 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.
      7159 7160 7161 7162 7163 7164 7165  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 7159 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.
      7159 7160 7161 7162 7163 7164 7165  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 7159 class UpdateProjectVisibilityInput < Struct.new( :project_arn, :project_visibility, :resource_access_role) SENSITIVE = [] include Aws::Structure end  |