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
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.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) -> Option<&[CustomDetection]>
pub fn detections(&self) -> Option<&[CustomDetection]>
The custom data identifiers that detected the data, and the number of occurrences of the data that each identifier detected.
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
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 Debug for CustomDataIdentifiers
impl Debug for CustomDataIdentifiers
source§impl PartialEq<CustomDataIdentifiers> for CustomDataIdentifiers
impl PartialEq<CustomDataIdentifiers> for CustomDataIdentifiers
source§fn eq(&self, other: &CustomDataIdentifiers) -> bool
fn eq(&self, other: &CustomDataIdentifiers) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CustomDataIdentifiers
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more