Struct aws_sdk_ssm::types::PatchComplianceData
source · #[non_exhaustive]pub struct PatchComplianceData { /* private fields */ }
Expand description
Information about the state of a patch on a particular managed node as it relates to the patch baseline used to patch the node.
Implementations§
source§impl PatchComplianceData
impl PatchComplianceData
sourcepub fn classification(&self) -> Option<&str>
pub fn classification(&self) -> Option<&str>
The classification of the patch, such as SecurityUpdates
, Updates
, and CriticalUpdates
.
sourcepub fn severity(&self) -> Option<&str>
pub fn severity(&self) -> Option<&str>
The severity of the patch such as Critical
, Important
, and Moderate
.
sourcepub fn state(&self) -> Option<&PatchComplianceDataState>
pub fn state(&self) -> Option<&PatchComplianceDataState>
The state of the patch on the managed node, such as INSTALLED or FAILED.
For descriptions of each patch state, see About patch compliance in the Amazon Web Services Systems Manager User Guide.
sourcepub fn installed_time(&self) -> Option<&DateTime>
pub fn installed_time(&self) -> Option<&DateTime>
The date/time the patch was installed on the managed node. Not all operating systems provide this level of information.
source§impl PatchComplianceData
impl PatchComplianceData
sourcepub fn builder() -> PatchComplianceDataBuilder
pub fn builder() -> PatchComplianceDataBuilder
Creates a new builder-style object to manufacture PatchComplianceData
.
Trait Implementations§
source§impl Clone for PatchComplianceData
impl Clone for PatchComplianceData
source§fn clone(&self) -> PatchComplianceData
fn clone(&self) -> PatchComplianceData
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PatchComplianceData
impl Debug for PatchComplianceData
source§impl PartialEq<PatchComplianceData> for PatchComplianceData
impl PartialEq<PatchComplianceData> for PatchComplianceData
source§fn eq(&self, other: &PatchComplianceData) -> bool
fn eq(&self, other: &PatchComplianceData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PatchComplianceData
Auto Trait Implementations§
impl RefUnwindSafe for PatchComplianceData
impl Send for PatchComplianceData
impl Sync for PatchComplianceData
impl Unpin for PatchComplianceData
impl UnwindSafe for PatchComplianceData
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
Mutably borrows from an owned value. Read more