[][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

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

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

The operating system-specific ID of the patch.

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

The state of the patch on the instance (INSTALLED, INSTALLED_OTHER, MISSING, NOT_APPLICABLE or FAILED).

The title of the patch.

Trait Implementations

impl Clone for PatchComplianceData
[src]

Performs copy-assignment from source. Read more

impl Default for PatchComplianceData
[src]

impl PartialEq<PatchComplianceData> for PatchComplianceData
[src]

impl Debug for PatchComplianceData
[src]

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

Auto Trait Implementations

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]

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

🔬 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, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T