Struct aws_sdk_securityhub::model::ClassificationResult
source · #[non_exhaustive]pub struct ClassificationResult { /* private fields */ }
Expand description
Details about the sensitive data that was detected on the resource.
Implementations§
source§impl ClassificationResult
impl ClassificationResult
sourcepub fn size_classified(&self) -> i64
pub fn size_classified(&self) -> i64
The total size in bytes of the affected data.
sourcepub fn additional_occurrences(&self) -> bool
pub fn additional_occurrences(&self) -> bool
Indicates whether there are additional occurrences of sensitive data that are not included in the finding. This occurs when the number of occurrences exceeds the maximum that can be included.
sourcepub fn status(&self) -> Option<&ClassificationStatus>
pub fn status(&self) -> Option<&ClassificationStatus>
The current status of the sensitive data detection.
sourcepub fn sensitive_data(&self) -> Option<&[SensitiveDataResult]>
pub fn sensitive_data(&self) -> Option<&[SensitiveDataResult]>
Provides details about sensitive data that was identified based on built-in configuration.
sourcepub fn custom_data_identifiers(&self) -> Option<&CustomDataIdentifiersResult>
pub fn custom_data_identifiers(&self) -> Option<&CustomDataIdentifiersResult>
Provides details about sensitive data that was identified based on customer-defined configuration.
source§impl ClassificationResult
impl ClassificationResult
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ClassificationResult
.
Trait Implementations§
source§impl Clone for ClassificationResult
impl Clone for ClassificationResult
source§fn clone(&self) -> ClassificationResult
fn clone(&self) -> ClassificationResult
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 ClassificationResult
impl Debug for ClassificationResult
source§impl PartialEq<ClassificationResult> for ClassificationResult
impl PartialEq<ClassificationResult> for ClassificationResult
source§fn eq(&self, other: &ClassificationResult) -> bool
fn eq(&self, other: &ClassificationResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.