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
impl StructuralPartialEq for SuppressDataIdentifier
Auto Trait Implementations§
impl Freeze for SuppressDataIdentifier
impl RefUnwindSafe for SuppressDataIdentifier
impl Send for SuppressDataIdentifier
impl Sync for SuppressDataIdentifier
impl Unpin for SuppressDataIdentifier
impl UnwindSafe for SuppressDataIdentifier
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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