#[non_exhaustive]pub struct CustomDataIdentifiersDetections {
pub count: Option<i64>,
pub arn: Option<String>,
pub name: Option<String>,
pub occurrences: Option<Occurrences>,
}
Expand description
The list of detected instances of sensitive data.
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.count: Option<i64>
The total number of occurrences of sensitive data that were detected.
arn: Option<String>
The ARN of the custom identifier that was used to detect the sensitive data.
name: Option<String>
he name of the custom identifier that detected the sensitive data.
occurrences: Option<Occurrences>
Details about the sensitive data that was detected.
Implementations§
source§impl CustomDataIdentifiersDetections
impl CustomDataIdentifiersDetections
sourcepub fn count(&self) -> Option<i64>
pub fn count(&self) -> Option<i64>
The total number of occurrences of sensitive data that were detected.
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The ARN of the custom identifier that was used to detect the sensitive data.
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
he name of the custom identifier that detected the sensitive data.
sourcepub fn occurrences(&self) -> Option<&Occurrences>
pub fn occurrences(&self) -> Option<&Occurrences>
Details about the sensitive data that was detected.
source§impl CustomDataIdentifiersDetections
impl CustomDataIdentifiersDetections
sourcepub fn builder() -> CustomDataIdentifiersDetectionsBuilder
pub fn builder() -> CustomDataIdentifiersDetectionsBuilder
Creates a new builder-style object to manufacture CustomDataIdentifiersDetections
.
Trait Implementations§
source§impl Clone for CustomDataIdentifiersDetections
impl Clone for CustomDataIdentifiersDetections
source§fn clone(&self) -> CustomDataIdentifiersDetections
fn clone(&self) -> CustomDataIdentifiersDetections
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 for CustomDataIdentifiersDetections
impl PartialEq for CustomDataIdentifiersDetections
source§fn eq(&self, other: &CustomDataIdentifiersDetections) -> bool
fn eq(&self, other: &CustomDataIdentifiersDetections) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CustomDataIdentifiersDetections
Auto Trait Implementations§
impl Freeze for CustomDataIdentifiersDetections
impl RefUnwindSafe for CustomDataIdentifiersDetections
impl Send for CustomDataIdentifiersDetections
impl Sync for CustomDataIdentifiersDetections
impl Unpin for CustomDataIdentifiersDetections
impl UnwindSafe for CustomDataIdentifiersDetections
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.