Struct aws_sdk_macie2::types::AutomatedDiscoveryAccount
source · #[non_exhaustive]pub struct AutomatedDiscoveryAccount {
pub account_id: Option<String>,
pub status: Option<AutomatedDiscoveryAccountStatus>,
}
Expand description
Provides information about the status of automated sensitive data discovery for an Amazon Macie 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.account_id: Option<String>
The Amazon Web Services account ID for the account.
status: Option<AutomatedDiscoveryAccountStatus>
The current status of automated sensitive data discovery for the account. Possible values are: ENABLED, perform automated sensitive data discovery activities for the account; and, DISABLED, don't perform automated sensitive data discovery activities for the account.
Implementations§
source§impl AutomatedDiscoveryAccount
impl AutomatedDiscoveryAccount
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The Amazon Web Services account ID for the account.
sourcepub fn status(&self) -> Option<&AutomatedDiscoveryAccountStatus>
pub fn status(&self) -> Option<&AutomatedDiscoveryAccountStatus>
The current status of automated sensitive data discovery for the account. Possible values are: ENABLED, perform automated sensitive data discovery activities for the account; and, DISABLED, don't perform automated sensitive data discovery activities for the account.
source§impl AutomatedDiscoveryAccount
impl AutomatedDiscoveryAccount
sourcepub fn builder() -> AutomatedDiscoveryAccountBuilder
pub fn builder() -> AutomatedDiscoveryAccountBuilder
Creates a new builder-style object to manufacture AutomatedDiscoveryAccount
.
Trait Implementations§
source§impl Clone for AutomatedDiscoveryAccount
impl Clone for AutomatedDiscoveryAccount
source§fn clone(&self) -> AutomatedDiscoveryAccount
fn clone(&self) -> AutomatedDiscoveryAccount
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AutomatedDiscoveryAccount
impl Debug for AutomatedDiscoveryAccount
source§impl PartialEq for AutomatedDiscoveryAccount
impl PartialEq for AutomatedDiscoveryAccount
source§fn eq(&self, other: &AutomatedDiscoveryAccount) -> bool
fn eq(&self, other: &AutomatedDiscoveryAccount) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AutomatedDiscoveryAccount
Auto Trait Implementations§
impl Freeze for AutomatedDiscoveryAccount
impl RefUnwindSafe for AutomatedDiscoveryAccount
impl Send for AutomatedDiscoveryAccount
impl Sync for AutomatedDiscoveryAccount
impl Unpin for AutomatedDiscoveryAccount
impl UnwindSafe for AutomatedDiscoveryAccount
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