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 ==
.impl StructuralPartialEq for ResourceProfileArtifact
Auto Trait Implementations§
impl Freeze for ResourceProfileArtifact
impl RefUnwindSafe for ResourceProfileArtifact
impl Send for ResourceProfileArtifact
impl Sync for ResourceProfileArtifact
impl Unpin for ResourceProfileArtifact
impl UnwindSafe for ResourceProfileArtifact
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more