Struct rusoto_support::TrustedAdvisorCheckResult[][src]

pub struct TrustedAdvisorCheckResult {
    pub category_specific_summary: TrustedAdvisorCategorySpecificSummary,
    pub check_id: String,
    pub flagged_resources: Vec<TrustedAdvisorResourceDetail>,
    pub resources_summary: TrustedAdvisorResourcesSummary,
    pub status: String,
    pub timestamp: String,
}

The results of a Trusted Advisor check returned by DescribeTrustedAdvisorCheckResult.

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.

The details about each resource listed in the check result.

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 TrustedAdvisorCheckResult
[src]

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

impl Debug for TrustedAdvisorCheckResult
[src]

Formats the value using the given formatter. Read more

impl Clone for TrustedAdvisorCheckResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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