Struct aws_sdk_macie2::types::ResourceProfileArtifact
source · #[non_exhaustive]pub struct ResourceProfileArtifact {
pub arn: Option<String>,
pub classification_result_status: Option<String>,
pub sensitive: Option<bool>,
}
Expand description
Provides information about an S3 object that Amazon Macie selected for analysis while performing automated sensitive data discovery for an S3 bucket, and the status and results of the analysis. This information is available only if automated sensitive data discovery is currently enabled for your account.
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.arn: Option<String>
The Amazon Resource Name (ARN) of the object.
classification_result_status: Option<String>
The status of the analysis. Possible values are:
COMPLETE - Amazon Macie successfully completed its analysis of the object.
PARTIAL - Macie analyzed only a subset of data in the object. For example, the object is an archive file that contains files in an unsupported format.
SKIPPED - Macie wasn't able to analyze the object. For example, the object is a malformed file.
sensitive: Option<bool>
Specifies whether Amazon Macie found sensitive data in the object.
Implementations§
source§impl ResourceProfileArtifact
impl ResourceProfileArtifact
sourcepub fn classification_result_status(&self) -> Option<&str>
pub fn classification_result_status(&self) -> Option<&str>
The status of the analysis. Possible values are:
COMPLETE - Amazon Macie successfully completed its analysis of the object.
PARTIAL - Macie analyzed only a subset of data in the object. For example, the object is an archive file that contains files in an unsupported format.
SKIPPED - Macie wasn't able to analyze the object. For example, the object is a malformed file.
source§impl ResourceProfileArtifact
impl ResourceProfileArtifact
sourcepub fn builder() -> ResourceProfileArtifactBuilder
pub fn builder() -> ResourceProfileArtifactBuilder
Creates a new builder-style object to manufacture ResourceProfileArtifact
.
Trait Implementations§
source§impl Clone for ResourceProfileArtifact
impl Clone for ResourceProfileArtifact
source§fn clone(&self) -> ResourceProfileArtifact
fn clone(&self) -> ResourceProfileArtifact
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ResourceProfileArtifact
impl Debug for ResourceProfileArtifact
source§impl PartialEq for ResourceProfileArtifact
impl PartialEq for ResourceProfileArtifact
source§fn eq(&self, other: &ResourceProfileArtifact) -> bool
fn eq(&self, other: &ResourceProfileArtifact) -> bool
self
and other
values to be equal, and is used
by ==
.