[][src]Struct rusoto_ssm::PatchComplianceData

pub struct PatchComplianceData {
    pub classification: String,
    pub installed_time: f64,
    pub kb_id: String,
    pub severity: String,
    pub state: String,
    pub title: String,
}

Information about the state of a patch on a particular instance as it relates to the patch baseline used to patch the instance.

Fields

classification: String

The classification of the patch (for example, SecurityUpdates, Updates, CriticalUpdates).

installed_time: f64

The date/time the patch was installed on the instance. Note that not all operating systems provide this level of information.

kb_id: String

The operating system-specific ID of the patch.

severity: String

The severity of the patch (for example, Critical, Important, Moderate).

state: String

The state of the patch on the instance, such as INSTALLED or FAILED.

For descriptions of each patch state, see About patch compliance in the AWS Systems Manager User Guide.

title: String

The title of the patch.

Trait Implementations

impl Clone for PatchComplianceData[src]

impl Debug for PatchComplianceData[src]

impl Default for PatchComplianceData[src]

impl<'de> Deserialize<'de> for PatchComplianceData[src]

impl PartialEq<PatchComplianceData> for PatchComplianceData[src]

impl StructuralPartialEq for PatchComplianceData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.