Class: Aws::CodeBuild::Types::UpdateProjectVisibilityInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::UpdateProjectVisibilityInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
Note:
When making an API call, you may pass UpdateProjectVisibilityInput data as a hash:
{
project_arn: "NonEmptyString", # required
project_visibility: "PUBLIC_READ", # required, accepts PUBLIC_READ, PRIVATE
resource_access_role: "NonEmptyString",
}
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.
6961 6962 6963 6964 6965 6966 6967 |
# File 'lib/aws-sdk-codebuild/types.rb', line 6961 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.
6961 6962 6963 6964 6965 6966 6967 |
# File 'lib/aws-sdk-codebuild/types.rb', line 6961 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.
6961 6962 6963 6964 6965 6966 6967 |
# File 'lib/aws-sdk-codebuild/types.rb', line 6961 class UpdateProjectVisibilityInput < Struct.new( :project_arn, :project_visibility, :resource_access_role) SENSITIVE = [] include Aws::Structure end |