Struct rusoto_support::TrustedAdvisorCheckSummary[][src]

pub struct TrustedAdvisorCheckSummary {
    pub category_specific_summary: TrustedAdvisorCategorySpecificSummary,
    pub check_id: String,
    pub has_flagged_resources: Option<bool>,
    pub resources_summary: TrustedAdvisorResourcesSummary,
    pub status: String,
    pub timestamp: String,
}

A summary of a Trusted Advisor check result, including the alert status, last refresh, and number of resources examined.

Fields

Summary information that relates to the category of the check. Cost Optimizing is the only category that is currently supported.

The unique identifier for the Trusted Advisor check.

Specifies whether the Trusted Advisor check has flagged resources.

The alert status of the check: "ok" (green), "warning" (yellow), "error" (red), or "not_available".

The time of the last refresh of the check.

Trait Implementations

impl Default for TrustedAdvisorCheckSummary
[src]

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

impl Debug for TrustedAdvisorCheckSummary
[src]

Formats the value using the given formatter. Read more

impl Clone for TrustedAdvisorCheckSummary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TrustedAdvisorCheckSummary
[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