[][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_rejected_count: Option<i64>,
    pub instance_id: String,
    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 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 Amazon 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_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.

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.

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

impl Default for InstancePatchState[src]

impl Clone for InstancePatchState[src]

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

Performs copy-assignment from source. Read more

impl Debug for InstancePatchState[src]

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

Auto Trait Implementations

impl Send for InstancePatchState

impl Sync for InstancePatchState

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