Struct aws_sdk_ssm::types::SeveritySummary
source · #[non_exhaustive]pub struct SeveritySummary {
pub critical_count: i32,
pub high_count: i32,
pub medium_count: i32,
pub low_count: i32,
pub informational_count: i32,
pub unspecified_count: i32,
}
Expand description
The number of managed nodes found for each patch severity level defined in the request filter.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.critical_count: i32
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.
high_count: i32
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.
medium_count: i32
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.
low_count: i32
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.
informational_count: i32
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.
unspecified_count: i32
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.
Implementations§
source§impl SeveritySummary
impl SeveritySummary
sourcepub fn critical_count(&self) -> i32
pub fn critical_count(&self) -> i32
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.
sourcepub fn high_count(&self) -> i32
pub fn high_count(&self) -> i32
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.
sourcepub fn medium_count(&self) -> i32
pub fn medium_count(&self) -> i32
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.
sourcepub fn low_count(&self) -> i32
pub fn low_count(&self) -> i32
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.
sourcepub fn informational_count(&self) -> i32
pub fn informational_count(&self) -> i32
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.
sourcepub fn unspecified_count(&self) -> i32
pub fn unspecified_count(&self) -> i32
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.
source§impl SeveritySummary
impl SeveritySummary
sourcepub fn builder() -> SeveritySummaryBuilder
pub fn builder() -> SeveritySummaryBuilder
Creates a new builder-style object to manufacture SeveritySummary
.
Trait Implementations§
source§impl Clone for SeveritySummary
impl Clone for SeveritySummary
source§fn clone(&self) -> SeveritySummary
fn clone(&self) -> SeveritySummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SeveritySummary
impl Debug for SeveritySummary
source§impl PartialEq for SeveritySummary
impl PartialEq for SeveritySummary
source§fn eq(&self, other: &SeveritySummary) -> bool
fn eq(&self, other: &SeveritySummary) -> bool
self
and other
values to be equal, and is used
by ==
.