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 ==.