#[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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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) -> Option<&[String]>
pub fn managed_data_identifier_ids(&self) -> Option<&[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.
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
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 PartialEq<SensitivityInspectionTemplateExcludes> for SensitivityInspectionTemplateExcludes
impl PartialEq<SensitivityInspectionTemplateExcludes> for SensitivityInspectionTemplateExcludes
source§fn eq(&self, other: &SensitivityInspectionTemplateExcludes) -> bool
fn eq(&self, other: &SensitivityInspectionTemplateExcludes) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SensitivityInspectionTemplateExcludes
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more