Struct aws_sdk_macie2::types::LastRunErrorStatus
source · #[non_exhaustive]pub struct LastRunErrorStatus {
pub code: Option<LastRunErrorStatusCode>,
}
Expand description
Specifies whether any account- or bucket-level access errors occurred when a classification job ran. For information about using logging data to investigate these errors, see Monitoring sensitive data discovery jobs in the Amazon Macie User Guide.
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.code: Option<LastRunErrorStatusCode>
Specifies whether any account- or bucket-level access errors occurred when the job ran. For a recurring job, this value indicates the error status of the job's most recent run. Possible values are:
-
ERROR - One or more errors occurred. Amazon Macie didn't process all the data specified for the job.
-
NONE - No errors occurred. Macie processed all the data specified for the job.
Implementations§
source§impl LastRunErrorStatus
impl LastRunErrorStatus
sourcepub fn code(&self) -> Option<&LastRunErrorStatusCode>
pub fn code(&self) -> Option<&LastRunErrorStatusCode>
Specifies whether any account- or bucket-level access errors occurred when the job ran. For a recurring job, this value indicates the error status of the job's most recent run. Possible values are:
-
ERROR - One or more errors occurred. Amazon Macie didn't process all the data specified for the job.
-
NONE - No errors occurred. Macie processed all the data specified for the job.
source§impl LastRunErrorStatus
impl LastRunErrorStatus
sourcepub fn builder() -> LastRunErrorStatusBuilder
pub fn builder() -> LastRunErrorStatusBuilder
Creates a new builder-style object to manufacture LastRunErrorStatus
.
Trait Implementations§
source§impl Clone for LastRunErrorStatus
impl Clone for LastRunErrorStatus
source§fn clone(&self) -> LastRunErrorStatus
fn clone(&self) -> LastRunErrorStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for LastRunErrorStatus
impl Debug for LastRunErrorStatus
source§impl PartialEq for LastRunErrorStatus
impl PartialEq for LastRunErrorStatus
source§fn eq(&self, other: &LastRunErrorStatus) -> bool
fn eq(&self, other: &LastRunErrorStatus) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LastRunErrorStatus
Auto Trait Implementations§
impl Freeze for LastRunErrorStatus
impl RefUnwindSafe for LastRunErrorStatus
impl Send for LastRunErrorStatus
impl Sync for LastRunErrorStatus
impl Unpin for LastRunErrorStatus
impl UnwindSafe for LastRunErrorStatus
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