pub struct TrustedAdvisorResourcesSummary {
pub resources_flagged: i64,
pub resources_ignored: i64,
pub resources_processed: i64,
pub resources_suppressed: i64,
}Expand description
Details about AWS resources that were analyzed in a call to Trusted Advisor DescribeTrustedAdvisorCheckSummaries.
Fields§
§resources_flagged: i64The number of AWS resources that were flagged (listed) by the Trusted Advisor check.
resources_ignored: i64The number of AWS resources ignored by Trusted Advisor because information was unavailable.
resources_processed: i64The number of AWS resources that were analyzed by the Trusted Advisor check.
resources_suppressed: i64The number of AWS resources ignored by Trusted Advisor because they were marked as suppressed by the user.
Trait Implementations§
Source§impl Clone for TrustedAdvisorResourcesSummary
impl Clone for TrustedAdvisorResourcesSummary
Source§fn clone(&self) -> TrustedAdvisorResourcesSummary
fn clone(&self) -> TrustedAdvisorResourcesSummary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for TrustedAdvisorResourcesSummary
impl Default for TrustedAdvisorResourcesSummary
Source§fn default() -> TrustedAdvisorResourcesSummary
fn default() -> TrustedAdvisorResourcesSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrustedAdvisorResourcesSummary
impl<'de> Deserialize<'de> for TrustedAdvisorResourcesSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TrustedAdvisorResourcesSummary
impl PartialEq for TrustedAdvisorResourcesSummary
Source§fn eq(&self, other: &TrustedAdvisorResourcesSummary) -> bool
fn eq(&self, other: &TrustedAdvisorResourcesSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TrustedAdvisorResourcesSummary
Auto Trait Implementations§
impl Freeze for TrustedAdvisorResourcesSummary
impl RefUnwindSafe for TrustedAdvisorResourcesSummary
impl Send for TrustedAdvisorResourcesSummary
impl Sync for TrustedAdvisorResourcesSummary
impl Unpin for TrustedAdvisorResourcesSummary
impl UnwindSafe for TrustedAdvisorResourcesSummary
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
Mutably borrows from an owned value. Read more