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 ==
.impl StructuralPartialEq for UpdateProjectVisibilityInput
Auto Trait Implementations§
impl Freeze for UpdateProjectVisibilityInput
impl RefUnwindSafe for UpdateProjectVisibilityInput
impl Send for UpdateProjectVisibilityInput
impl Sync for UpdateProjectVisibilityInput
impl Unpin for UpdateProjectVisibilityInput
impl UnwindSafe for UpdateProjectVisibilityInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more