Struct aws_sdk_accessanalyzer::model::AnalyzerSummary
source · [−]#[non_exhaustive]pub struct AnalyzerSummary {
pub arn: Option<String>,
pub name: Option<String>,
pub type: Option<Type>,
pub created_at: Option<DateTime>,
pub last_resource_analyzed: Option<String>,
pub last_resource_analyzed_at: Option<DateTime>,
pub tags: Option<HashMap<String, String>>,
pub status: Option<AnalyzerStatus>,
pub status_reason: Option<StatusReason>,
}
Expand description
Contains information about the analyzer.
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 ARN of the analyzer.
name: Option<String>
The name of the analyzer.
type: Option<Type>
The type of analyzer, which corresponds to the zone of trust chosen for the analyzer.
created_at: Option<DateTime>
A timestamp for the time at which the analyzer was created.
last_resource_analyzed: Option<String>
The resource that was most recently analyzed by the analyzer.
last_resource_analyzed_at: Option<DateTime>
The time at which the most recently analyzed resource was analyzed.
The tags added to the analyzer.
status: Option<AnalyzerStatus>
The status of the analyzer. An Active
analyzer successfully monitors supported resources and generates new findings. The analyzer is Disabled
when a user action, such as removing trusted access for Identity and Access Management Access Analyzer from Organizations, causes the analyzer to stop generating new findings. The status is Creating
when the analyzer creation is in progress and Failed
when the analyzer creation has failed.
status_reason: Option<StatusReason>
The statusReason
provides more details about the current status of the analyzer. For example, if the creation for the analyzer fails, a Failed
status is returned. For an analyzer with organization as the type, this failure can be due to an issue with creating the service-linked roles required in the member accounts of the Amazon Web Services organization.
Implementations
sourceimpl AnalyzerSummary
impl AnalyzerSummary
sourcepub fn type(&self) -> Option<&Type>
pub fn type(&self) -> Option<&Type>
The type of analyzer, which corresponds to the zone of trust chosen for the analyzer.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
A timestamp for the time at which the analyzer was created.
sourcepub fn last_resource_analyzed(&self) -> Option<&str>
pub fn last_resource_analyzed(&self) -> Option<&str>
The resource that was most recently analyzed by the analyzer.
sourcepub fn last_resource_analyzed_at(&self) -> Option<&DateTime>
pub fn last_resource_analyzed_at(&self) -> Option<&DateTime>
The time at which the most recently analyzed resource was analyzed.
The tags added to the analyzer.
sourcepub fn status(&self) -> Option<&AnalyzerStatus>
pub fn status(&self) -> Option<&AnalyzerStatus>
The status of the analyzer. An Active
analyzer successfully monitors supported resources and generates new findings. The analyzer is Disabled
when a user action, such as removing trusted access for Identity and Access Management Access Analyzer from Organizations, causes the analyzer to stop generating new findings. The status is Creating
when the analyzer creation is in progress and Failed
when the analyzer creation has failed.
sourcepub fn status_reason(&self) -> Option<&StatusReason>
pub fn status_reason(&self) -> Option<&StatusReason>
The statusReason
provides more details about the current status of the analyzer. For example, if the creation for the analyzer fails, a Failed
status is returned. For an analyzer with organization as the type, this failure can be due to an issue with creating the service-linked roles required in the member accounts of the Amazon Web Services organization.
sourceimpl AnalyzerSummary
impl AnalyzerSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AnalyzerSummary
.
Trait Implementations
sourceimpl Clone for AnalyzerSummary
impl Clone for AnalyzerSummary
sourcefn clone(&self) -> AnalyzerSummary
fn clone(&self) -> AnalyzerSummary
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AnalyzerSummary
impl Debug for AnalyzerSummary
sourceimpl PartialEq<AnalyzerSummary> for AnalyzerSummary
impl PartialEq<AnalyzerSummary> for AnalyzerSummary
sourcefn eq(&self, other: &AnalyzerSummary) -> bool
fn eq(&self, other: &AnalyzerSummary) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AnalyzerSummary) -> bool
fn ne(&self, other: &AnalyzerSummary) -> bool
This method tests for !=
.
impl StructuralPartialEq for AnalyzerSummary
Auto Trait Implementations
impl RefUnwindSafe for AnalyzerSummary
impl Send for AnalyzerSummary
impl Sync for AnalyzerSummary
impl Unpin for AnalyzerSummary
impl UnwindSafe for AnalyzerSummary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more