#[non_exhaustive]pub struct UpdateProjectVisibilityOutput {
pub project_arn: Option<String>,
pub public_project_alias: Option<String>,
pub project_visibility: Option<ProjectVisibilityType>,
}
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.
public_project_alias: Option<String>
Contains the project identifier used with the public build APIs.
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.
Implementations
The Amazon Resource Name (ARN) of the build project.
Contains the project identifier used with the public build APIs.
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.
Creates a new builder-style object to manufacture UpdateProjectVisibilityOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for UpdateProjectVisibilityOutput
impl Sync for UpdateProjectVisibilityOutput
impl Unpin for UpdateProjectVisibilityOutput
impl UnwindSafe for UpdateProjectVisibilityOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more