#[non_exhaustive]pub struct SensitivityInspectionTemplateExcludes {
pub managed_data_identifier_ids: Option<Vec<String>>,
}Expand description
Specifies managed data identifiers to exclude (not use) when performing automated sensitive data discovery for an Amazon Macie account. For information about the managed data identifiers that Amazon Macie currently provides, see Using managed data identifiers in the Amazon Macie User Guide.
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.managed_data_identifier_ids: Option<Vec<String>>An array of unique identifiers, one for each managed data identifier to exclude. To retrieve a list of valid values, use the ListManagedDataIdentifiers operation.
Implementations§
source§impl SensitivityInspectionTemplateExcludes
impl SensitivityInspectionTemplateExcludes
sourcepub fn managed_data_identifier_ids(&self) -> &[String]
pub fn managed_data_identifier_ids(&self) -> &[String]
An array of unique identifiers, one for each managed data identifier to exclude. To retrieve a list of valid values, use the ListManagedDataIdentifiers operation.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .managed_data_identifier_ids.is_none().
source§impl SensitivityInspectionTemplateExcludes
impl SensitivityInspectionTemplateExcludes
sourcepub fn builder() -> SensitivityInspectionTemplateExcludesBuilder
pub fn builder() -> SensitivityInspectionTemplateExcludesBuilder
Creates a new builder-style object to manufacture SensitivityInspectionTemplateExcludes.
Trait Implementations§
source§impl Clone for SensitivityInspectionTemplateExcludes
impl Clone for SensitivityInspectionTemplateExcludes
source§fn clone(&self) -> SensitivityInspectionTemplateExcludes
fn clone(&self) -> SensitivityInspectionTemplateExcludes
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for SensitivityInspectionTemplateExcludes
impl PartialEq for SensitivityInspectionTemplateExcludes
source§fn eq(&self, other: &SensitivityInspectionTemplateExcludes) -> bool
fn eq(&self, other: &SensitivityInspectionTemplateExcludes) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SensitivityInspectionTemplateExcludes
Auto Trait Implementations§
impl Freeze for SensitivityInspectionTemplateExcludes
impl RefUnwindSafe for SensitivityInspectionTemplateExcludes
impl Send for SensitivityInspectionTemplateExcludes
impl Sync for SensitivityInspectionTemplateExcludes
impl Unpin for SensitivityInspectionTemplateExcludes
impl UnwindSafe for SensitivityInspectionTemplateExcludes
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