Struct aws_sdk_macie2::model::SensitiveDataItem
source · [−]#[non_exhaustive]pub struct SensitiveDataItem {
pub category: Option<SensitiveDataItemCategory>,
pub detections: Option<Vec<DefaultDetection>>,
pub total_count: i64,
}
Expand description
Provides information about the category, types, and occurrences of sensitive data that produced a sensitive data 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.category: Option<SensitiveDataItemCategory>
The category of sensitive data that was detected. For example: CREDENTIALS, for credentials data such as private keys or Amazon Web Services secret access keys; FINANCIAL_INFORMATION, for financial data such as credit card numbers; or, PERSONAL_INFORMATION, for personal health information, such as health insurance identification numbers, or personally identifiable information, such as passport numbers.
detections: Option<Vec<DefaultDetection>>
An array of objects, one for each type of sensitive data that was detected. Each object reports the number of occurrences of a specific type of sensitive data that was detected, and the location of up to 15 of those occurrences.
total_count: i64
The total number of occurrences of the sensitive data that was detected.
Implementations
The category of sensitive data that was detected. For example: CREDENTIALS, for credentials data such as private keys or Amazon Web Services secret access keys; FINANCIAL_INFORMATION, for financial data such as credit card numbers; or, PERSONAL_INFORMATION, for personal health information, such as health insurance identification numbers, or personally identifiable information, such as passport numbers.
An array of objects, one for each type of sensitive data that was detected. Each object reports the number of occurrences of a specific type of sensitive data that was detected, and the location of up to 15 of those occurrences.
The total number of occurrences of the sensitive data that was detected.
Creates a new builder-style object to manufacture SensitiveDataItem
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for SensitiveDataItem
impl Send for SensitiveDataItem
impl Sync for SensitiveDataItem
impl Unpin for SensitiveDataItem
impl UnwindSafe for SensitiveDataItem
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more