Struct aws_sdk_macie2::types::builders::ScopingBuilder
source · #[non_exhaustive]pub struct ScopingBuilder { /* private fields */ }
Expand description
A builder for Scoping
.
Implementations§
source§impl ScopingBuilder
impl ScopingBuilder
sourcepub fn excludes(self, input: JobScopingBlock) -> Self
pub fn excludes(self, input: JobScopingBlock) -> Self
The property- and tag-based conditions that determine which objects to exclude from the analysis.
sourcepub fn set_excludes(self, input: Option<JobScopingBlock>) -> Self
pub fn set_excludes(self, input: Option<JobScopingBlock>) -> Self
The property- and tag-based conditions that determine which objects to exclude from the analysis.
sourcepub fn get_excludes(&self) -> &Option<JobScopingBlock>
pub fn get_excludes(&self) -> &Option<JobScopingBlock>
The property- and tag-based conditions that determine which objects to exclude from the analysis.
sourcepub fn includes(self, input: JobScopingBlock) -> Self
pub fn includes(self, input: JobScopingBlock) -> Self
The property- and tag-based conditions that determine which objects to include in the analysis.
sourcepub fn set_includes(self, input: Option<JobScopingBlock>) -> Self
pub fn set_includes(self, input: Option<JobScopingBlock>) -> Self
The property- and tag-based conditions that determine which objects to include in the analysis.
sourcepub fn get_includes(&self) -> &Option<JobScopingBlock>
pub fn get_includes(&self) -> &Option<JobScopingBlock>
The property- and tag-based conditions that determine which objects to include in the analysis.
Trait Implementations§
source§impl Clone for ScopingBuilder
impl Clone for ScopingBuilder
source§fn clone(&self) -> ScopingBuilder
fn clone(&self) -> ScopingBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ScopingBuilder
impl Debug for ScopingBuilder
source§impl Default for ScopingBuilder
impl Default for ScopingBuilder
source§fn default() -> ScopingBuilder
fn default() -> ScopingBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ScopingBuilder
impl PartialEq for ScopingBuilder
source§fn eq(&self, other: &ScopingBuilder) -> bool
fn eq(&self, other: &ScopingBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ScopingBuilder
Auto Trait Implementations§
impl Freeze for ScopingBuilder
impl RefUnwindSafe for ScopingBuilder
impl Send for ScopingBuilder
impl Sync for ScopingBuilder
impl Unpin for ScopingBuilder
impl UnwindSafe for ScopingBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.