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
impl StructuralPartialEq for SeveritySummary
Auto Trait Implementations§
impl Freeze for SeveritySummary
impl RefUnwindSafe for SeveritySummary
impl Send for SeveritySummary
impl Sync for SeveritySummary
impl Unpin for SeveritySummary
impl UnwindSafe for SeveritySummary
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more