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]

[src]

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

impl Debug for SeveritySummary
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SeveritySummary
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations