Struct rusoto_ssm::CompliantSummary[][src]

pub struct CompliantSummary {
    pub compliant_count: Option<i64>,
    pub severity_summary: Option<SeveritySummary>,
}

A summary of resources that are compliant. The summary is organized according to the resource count for each compliance type.

Fields

The total number of resources that are compliant.

A summary of the compliance severity by compliance type.

Trait Implementations

impl Default for CompliantSummary
[src]

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

impl Debug for CompliantSummary
[src]

Formats the value using the given formatter. Read more

impl Clone for CompliantSummary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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