Struct rusoto_ssm::SeveritySummary[][src]

pub struct SeveritySummary {
    pub critical_count: Option<i64>,
    pub high_count: Option<i64>,
    pub informational_count: Option<i64>,
    pub low_count: Option<i64>,
    pub medium_count: Option<i64>,
    pub unspecified_count: Option<i64>,
}

The number of managed instances found for each patch severity level defined in the request filter.

Fields

The total number of resources or compliance items that have a severity level of critical. Critical severity is determined by the organization that published the compliance items.

The total number of resources or compliance items that have a severity level of high. High severity is determined by the organization that published the compliance items.

The total number of resources or compliance items that have a severity level of informational. Informational severity is determined by the organization that published the compliance items.

The total number of resources or compliance items that have a severity level of low. Low severity is determined by the organization that published the compliance items.

The total number of resources or compliance items that have a severity level of medium. Medium severity is determined by the organization that published the compliance items.

The total number of resources or compliance items that have a severity level of unspecified. Unspecified severity is determined by the organization that published the compliance items.

Trait Implementations

impl Default for SeveritySummary
[src]

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

impl Debug for SeveritySummary
[src]

Formats the value using the given formatter. Read more

impl Clone for SeveritySummary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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