Struct rusoto_ssm::EffectivePatch[][src]

pub struct EffectivePatch {
    pub patch: Option<Patch>,
    pub patch_status: Option<PatchStatus>,
}

The EffectivePatch structure defines metadata about a patch along with the approval state of the patch in a particular patch baseline. The approval state includes information about whether the patch is currently approved, due to be approved by a rule, explicitly approved, or explicitly rejected and the date the patch was or will be approved.

Fields

Provides metadata for a patch, including information such as the KB ID, severity, classification and a URL for where more information can be obtained about the patch.

The status of the patch in a patch baseline. This includes information about whether the patch is currently approved, due to be approved by a rule, explicitly approved, or explicitly rejected and the date the patch was or will be approved.

Trait Implementations

impl Default for EffectivePatch
[src]

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

impl Debug for EffectivePatch
[src]

Formats the value using the given formatter. Read more

impl Clone for EffectivePatch
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EffectivePatch
[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