#[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 ==
.