Struct rusoto_support::TrustedAdvisorCheckDescription[][src]

pub struct TrustedAdvisorCheckDescription {
    pub category: String,
    pub description: String,
    pub id: String,
    pub metadata: Vec<String>,
    pub name: String,
}

The description and metadata for a Trusted Advisor check.

Fields

The category of the Trusted Advisor check.

The description of the Trusted Advisor check, which includes the alert criteria and recommended actions (contains HTML markup).

The unique identifier for the Trusted Advisor check.

The column headings for the data returned by the Trusted Advisor check. The order of the headings corresponds to the order of the data in the Metadata element of the TrustedAdvisorResourceDetail for the check. Metadata contains all the data that is shown in the Excel download, even in those cases where the UI shows just summary data.

The display name for the Trusted Advisor check.

Trait Implementations

impl Default for TrustedAdvisorCheckDescription
[src]

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

impl Debug for TrustedAdvisorCheckDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for TrustedAdvisorCheckDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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