[][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 PartialEq<PatchComplianceData> for PatchComplianceData[src]

impl Default for PatchComplianceData[src]

impl Clone for PatchComplianceData[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PatchComplianceData[src]

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

Auto Trait Implementations

impl Send for PatchComplianceData

impl Sync for PatchComplianceData

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self