[][src]Struct rusoto_ssm::InstancePatchState

pub struct InstancePatchState {
    pub baseline_id: String,
    pub failed_count: Option<i64>,
    pub install_override_list: Option<String>,
    pub installed_count: Option<i64>,
    pub installed_other_count: Option<i64>,
    pub installed_pending_reboot_count: Option<i64>,
    pub installed_rejected_count: Option<i64>,
    pub instance_id: String,
    pub last_no_reboot_install_operation_time: Option<f64>,
    pub missing_count: Option<i64>,
    pub not_applicable_count: Option<i64>,
    pub operation: String,
    pub operation_end_time: f64,
    pub operation_start_time: f64,
    pub owner_information: Option<String>,
    pub patch_group: String,
    pub reboot_option: Option<String>,
    pub snapshot_id: Option<String>,
    pub unreported_not_applicable_count: Option<i64>,
}

Defines the high-level patch compliance state for a managed instance, providing information about the number of installed, missing, not applicable, and failed patches along with metadata about the operation when this information was gathered for the instance.

Fields

baseline_id: String

The ID of the patch baseline used to patch the instance.

failed_count: Option<i64>

The number of patches from the patch baseline that were attempted to be installed during the last patching operation, but failed to install.

install_override_list: Option<String>

An https URL or an Amazon S3 path-style URL to a list of patches to be installed. This patch installation list, which you maintain in an S3 bucket in YAML format and specify in the SSM document AWS-RunPatchBaseline, overrides the patches specified by the default patch baseline.

For more information about the InstallOverrideList parameter, see About the SSM document AWS-RunPatchBaseline in the AWS Systems Manager User Guide.

installed_count: Option<i64>

The number of patches from the patch baseline that are installed on the instance.

installed_other_count: Option<i64>

The number of patches not specified in the patch baseline that are installed on the instance.

installed_pending_reboot_count: Option<i64>

The number of patches installed by Patch Manager since the last time the instance was rebooted.

installed_rejected_count: Option<i64>

The number of instances with patches installed that are specified in a RejectedPatches list. Patches with a status of InstalledRejected were typically installed before they were added to a RejectedPatches list.

If ALLOWASDEPENDENCY is the specified option for RejectedPatchesAction, the value of InstalledRejectedCount will always be 0 (zero).

instance_id: String

The ID of the managed instance the high-level patch compliance information was collected for.

last_no_reboot_install_operation_time: Option<f64>

The time of the last attempt to patch the instance with NoReboot specified as the reboot option.

missing_count: Option<i64>

The number of patches from the patch baseline that are applicable for the instance but aren't currently installed.

not_applicable_count: Option<i64>

The number of patches from the patch baseline that aren't applicable for the instance and therefore aren't installed on the instance. This number may be truncated if the list of patch names is very large. The number of patches beyond this limit are reported in UnreportedNotApplicableCount.

operation: String

The type of patching operation that was performed: SCAN (assess patch compliance state) or INSTALL (install missing patches).

operation_end_time: f64

The time the most recent patching operation completed on the instance.

operation_start_time: f64

The time the most recent patching operation was started on the instance.

owner_information: Option<String>

Placeholder information. This field will always be empty in the current release of the service.

patch_group: String

The name of the patch group the managed instance belongs to.

reboot_option: Option<String>

Indicates the reboot option specified in the patch baseline.

Reboot options apply to Install operations only. Reboots are not attempted for Patch Manager Scan operations.

  • RebootIfNeeded: Patch Manager tries to reboot the instance if it installed any patches, or if any patches are detected with a status of InstalledPendingReboot.

  • NoReboot: Patch Manager attempts to install missing packages without trying to reboot the system. Patches installed with this option are assigned a status of InstalledPendingReboot. These patches might not be in effect until a reboot is performed.

snapshot_id: Option<String>

The ID of the patch baseline snapshot used during the patching operation when this compliance data was collected.

unreported_not_applicable_count: Option<i64>

The number of patches beyond the supported limit of NotApplicableCount that are not reported by name to Systems Manager Inventory.

Trait Implementations

impl Clone for InstancePatchState[src]

impl Debug for InstancePatchState[src]

impl Default for InstancePatchState[src]

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

impl PartialEq<InstancePatchState> for InstancePatchState[src]

impl StructuralPartialEq for InstancePatchState[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.