Struct rusoto_ssm::PatchComplianceData[][src]

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

Returns the "default value" for a type. Read more

impl Debug for PatchComplianceData
[src]

Formats the value using the given formatter. Read more

impl Clone for PatchComplianceData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PatchComplianceData
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations