#[non_exhaustive]pub struct TrustedAdvisorResourcesSummary {
pub resources_processed: i64,
pub resources_flagged: i64,
pub resources_ignored: i64,
pub resources_suppressed: i64,
}
Expand description
Details about Amazon Web Services resources that were analyzed in a call to Trusted Advisor DescribeTrustedAdvisorCheckSummaries
.
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.resources_processed: i64
The number of Amazon Web Services resources that were analyzed by the Trusted Advisor check.
resources_flagged: i64
The number of Amazon Web Services resources that were flagged (listed) by the Trusted Advisor check.
resources_ignored: i64
The number of Amazon Web Services resources ignored by Trusted Advisor because information was unavailable.
resources_suppressed: i64
The number of Amazon Web Services resources ignored by Trusted Advisor because they were marked as suppressed by the user.
Implementations
sourceimpl TrustedAdvisorResourcesSummary
impl TrustedAdvisorResourcesSummary
sourcepub fn resources_processed(&self) -> i64
pub fn resources_processed(&self) -> i64
The number of Amazon Web Services resources that were analyzed by the Trusted Advisor check.
sourcepub fn resources_flagged(&self) -> i64
pub fn resources_flagged(&self) -> i64
The number of Amazon Web Services resources that were flagged (listed) by the Trusted Advisor check.
sourcepub fn resources_ignored(&self) -> i64
pub fn resources_ignored(&self) -> i64
The number of Amazon Web Services resources ignored by Trusted Advisor because information was unavailable.
sourcepub fn resources_suppressed(&self) -> i64
pub fn resources_suppressed(&self) -> i64
The number of Amazon Web Services resources ignored by Trusted Advisor because they were marked as suppressed by the user.
sourceimpl TrustedAdvisorResourcesSummary
impl TrustedAdvisorResourcesSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TrustedAdvisorResourcesSummary
.
Trait Implementations
sourceimpl Clone for TrustedAdvisorResourcesSummary
impl Clone for TrustedAdvisorResourcesSummary
sourcefn clone(&self) -> TrustedAdvisorResourcesSummary
fn clone(&self) -> TrustedAdvisorResourcesSummary
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 PartialEq<TrustedAdvisorResourcesSummary> for TrustedAdvisorResourcesSummary
impl PartialEq<TrustedAdvisorResourcesSummary> for TrustedAdvisorResourcesSummary
sourcefn eq(&self, other: &TrustedAdvisorResourcesSummary) -> bool
fn eq(&self, other: &TrustedAdvisorResourcesSummary) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &TrustedAdvisorResourcesSummary) -> bool
fn ne(&self, other: &TrustedAdvisorResourcesSummary) -> bool
This method tests for !=
.
impl StructuralPartialEq for TrustedAdvisorResourcesSummary
Auto Trait Implementations
impl RefUnwindSafe for TrustedAdvisorResourcesSummary
impl Send for TrustedAdvisorResourcesSummary
impl Sync for TrustedAdvisorResourcesSummary
impl Unpin for TrustedAdvisorResourcesSummary
impl UnwindSafe for TrustedAdvisorResourcesSummary
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