Struct rusoto_support::TrustedAdvisorResourcesSummary[][src]

pub struct TrustedAdvisorResourcesSummary {
    pub resources_flagged: i64,
    pub resources_ignored: i64,
    pub resources_processed: i64,
    pub resources_suppressed: i64,
}

Details about AWS resources that were analyzed in a call to Trusted Advisor DescribeTrustedAdvisorCheckSummaries.

Fields

The number of AWS resources that were flagged (listed) by the Trusted Advisor check.

The number of AWS resources ignored by Trusted Advisor because information was unavailable.

The number of AWS resources that were analyzed by the Trusted Advisor check.

The number of AWS resources ignored by Trusted Advisor because they were marked as suppressed by the user.

Trait Implementations

impl Default for TrustedAdvisorResourcesSummary
[src]

Returns the "default value" for a type. Read more

impl Debug for TrustedAdvisorResourcesSummary
[src]

Formats the value using the given formatter. Read more

impl Clone for TrustedAdvisorResourcesSummary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TrustedAdvisorResourcesSummary
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations