Struct aws_sdk_macie2::types::SuppressDataIdentifier
source · #[non_exhaustive]pub struct SuppressDataIdentifier {
pub id: Option<String>,
pub type: Option<DataIdentifierType>,
}
Expand description
Specifies a custom data identifier or managed data identifier that detected a type of sensitive data to start excluding or including in an S3 bucket's sensitivity score.
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.id: Option<String>
The unique identifier for the custom data identifier or managed data identifier that detected the type of sensitive data to exclude or include in the score.
type: Option<DataIdentifierType>
The type of data identifier that detected the sensitive data. Possible values are: CUSTOM, for a custom data identifier; and, MANAGED, for a managed data identifier.
Implementations§
source§impl SuppressDataIdentifier
impl SuppressDataIdentifier
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
The unique identifier for the custom data identifier or managed data identifier that detected the type of sensitive data to exclude or include in the score.
sourcepub fn type(&self) -> Option<&DataIdentifierType>
pub fn type(&self) -> Option<&DataIdentifierType>
The type of data identifier that detected the sensitive data. Possible values are: CUSTOM, for a custom data identifier; and, MANAGED, for a managed data identifier.
source§impl SuppressDataIdentifier
impl SuppressDataIdentifier
sourcepub fn builder() -> SuppressDataIdentifierBuilder
pub fn builder() -> SuppressDataIdentifierBuilder
Creates a new builder-style object to manufacture SuppressDataIdentifier
.
Trait Implementations§
source§impl Clone for SuppressDataIdentifier
impl Clone for SuppressDataIdentifier
source§fn clone(&self) -> SuppressDataIdentifier
fn clone(&self) -> SuppressDataIdentifier
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SuppressDataIdentifier
impl Debug for SuppressDataIdentifier
source§impl PartialEq for SuppressDataIdentifier
impl PartialEq for SuppressDataIdentifier
source§fn eq(&self, other: &SuppressDataIdentifier) -> bool
fn eq(&self, other: &SuppressDataIdentifier) -> bool
self
and other
values to be equal, and is used
by ==
.