Struct aws_sdk_codebuild::operation::update_project_visibility::UpdateProjectVisibilityInput
source · #[non_exhaustive]pub struct UpdateProjectVisibilityInput {
pub project_arn: Option<String>,
pub project_visibility: Option<ProjectVisibilityType>,
pub resource_access_role: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.project_arn: Option<String>
The Amazon Resource Name (ARN) of the build project.
project_visibility: Option<ProjectVisibilityType>
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.
resource_access_role: Option<String>
The ARN of the IAM role that enables CodeBuild to access the CloudWatch Logs and Amazon S3 artifacts for the project's builds.
Implementations§
source§impl UpdateProjectVisibilityInput
impl UpdateProjectVisibilityInput
sourcepub fn project_arn(&self) -> Option<&str>
pub fn project_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the build project.
sourcepub fn project_visibility(&self) -> Option<&ProjectVisibilityType>
pub fn project_visibility(&self) -> Option<&ProjectVisibilityType>
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.
sourcepub fn resource_access_role(&self) -> Option<&str>
pub fn resource_access_role(&self) -> Option<&str>
The ARN of the IAM role that enables CodeBuild to access the CloudWatch Logs and Amazon S3 artifacts for the project's builds.
source§impl UpdateProjectVisibilityInput
impl UpdateProjectVisibilityInput
sourcepub fn builder() -> UpdateProjectVisibilityInputBuilder
pub fn builder() -> UpdateProjectVisibilityInputBuilder
Creates a new builder-style object to manufacture UpdateProjectVisibilityInput
.
Trait Implementations§
source§impl Clone for UpdateProjectVisibilityInput
impl Clone for UpdateProjectVisibilityInput
source§fn clone(&self) -> UpdateProjectVisibilityInput
fn clone(&self) -> UpdateProjectVisibilityInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateProjectVisibilityInput
impl Debug for UpdateProjectVisibilityInput
source§impl PartialEq for UpdateProjectVisibilityInput
impl PartialEq for UpdateProjectVisibilityInput
source§fn eq(&self, other: &UpdateProjectVisibilityInput) -> bool
fn eq(&self, other: &UpdateProjectVisibilityInput) -> bool
self
and other
values to be equal, and is used
by ==
.