Struct aws_sdk_macie2::model::ClassificationResult
source · [−]#[non_exhaustive]pub struct ClassificationResult { /* private fields */ }
Expand description
Provides the details of a sensitive data finding, including the types, number of occurrences, and locations of the sensitive data that was detected.
Implementations
sourceimpl ClassificationResult
impl ClassificationResult
sourcepub fn additional_occurrences(&self) -> bool
pub fn additional_occurrences(&self) -> bool
Specifies whether Amazon Macie detected additional occurrences of sensitive data in the S3 object. A finding includes location data for a maximum of 15 occurrences of sensitive data.
This value can help you determine whether to investigate additional occurrences of sensitive data in an object. You can do this by referring to the corresponding sensitive data discovery result for the finding (ClassificationDetails.detailedResultsLocation).
sourcepub fn custom_data_identifiers(&self) -> Option<&CustomDataIdentifiers>
pub fn custom_data_identifiers(&self) -> Option<&CustomDataIdentifiers>
The custom data identifiers that detected the sensitive data and the number of occurrences of the data that they detected.
sourcepub fn mime_type(&self) -> Option<&str>
pub fn mime_type(&self) -> Option<&str>
The type of content, as a MIME type, that the finding applies to. For example, application/gzip, for a GNU Gzip compressed archive file, or application/pdf, for an Adobe Portable Document Format file.
sourcepub fn sensitive_data(&self) -> Option<&[SensitiveDataItem]>
pub fn sensitive_data(&self) -> Option<&[SensitiveDataItem]>
The category, types, and number of occurrences of the sensitive data that produced the finding.
sourcepub fn size_classified(&self) -> i64
pub fn size_classified(&self) -> i64
The total size, in bytes, of the data that the finding applies to.
sourcepub fn status(&self) -> Option<&ClassificationResultStatus>
pub fn status(&self) -> Option<&ClassificationResultStatus>
The status of the finding.
sourceimpl ClassificationResult
impl ClassificationResult
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ClassificationResult
.
Trait Implementations
sourceimpl Clone for ClassificationResult
impl Clone for ClassificationResult
sourcefn clone(&self) -> ClassificationResult
fn clone(&self) -> ClassificationResult
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more