Struct aws_sdk_macie2::types::CustomDataIdentifiers
source · #[non_exhaustive]pub struct CustomDataIdentifiers {
pub detections: Option<Vec<CustomDetection>>,
pub total_count: Option<i64>,
}
Expand description
Provides information about custom data identifiers that produced a sensitive data finding, and the number of occurrences of the data that they detected for the finding.
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.detections: Option<Vec<CustomDetection>>
The custom data identifiers that detected the data, and the number of occurrences of the data that each identifier detected.
total_count: Option<i64>
The total number of occurrences of the data that was detected by the custom data identifiers and produced the finding.
Implementations§
source§impl CustomDataIdentifiers
impl CustomDataIdentifiers
sourcepub fn detections(&self) -> &[CustomDetection]
pub fn detections(&self) -> &[CustomDetection]
The custom data identifiers that detected the data, and the number of occurrences of the data that each identifier detected.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .detections.is_none()
.
sourcepub fn total_count(&self) -> Option<i64>
pub fn total_count(&self) -> Option<i64>
The total number of occurrences of the data that was detected by the custom data identifiers and produced the finding.
source§impl CustomDataIdentifiers
impl CustomDataIdentifiers
sourcepub fn builder() -> CustomDataIdentifiersBuilder
pub fn builder() -> CustomDataIdentifiersBuilder
Creates a new builder-style object to manufacture CustomDataIdentifiers
.
Trait Implementations§
source§impl Clone for CustomDataIdentifiers
impl Clone for CustomDataIdentifiers
source§fn clone(&self) -> CustomDataIdentifiers
fn clone(&self) -> CustomDataIdentifiers
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CustomDataIdentifiers
impl Debug for CustomDataIdentifiers
source§impl PartialEq for CustomDataIdentifiers
impl PartialEq for CustomDataIdentifiers
source§fn eq(&self, other: &CustomDataIdentifiers) -> bool
fn eq(&self, other: &CustomDataIdentifiers) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CustomDataIdentifiers
Auto Trait Implementations§
impl Freeze for CustomDataIdentifiers
impl RefUnwindSafe for CustomDataIdentifiers
impl Send for CustomDataIdentifiers
impl Sync for CustomDataIdentifiers
impl Unpin for CustomDataIdentifiers
impl UnwindSafe for CustomDataIdentifiers
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> 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