[][src]Struct rusoto_ssm::DescribePatchGroupStateResult

pub struct DescribePatchGroupStateResult {
    pub instances: Option<i64>,
    pub instances_with_failed_patches: Option<i64>,
    pub instances_with_installed_other_patches: Option<i64>,
    pub instances_with_installed_patches: Option<i64>,
    pub instances_with_installed_pending_reboot_patches: Option<i64>,
    pub instances_with_installed_rejected_patches: Option<i64>,
    pub instances_with_missing_patches: Option<i64>,
    pub instances_with_not_applicable_patches: Option<i64>,
    pub instances_with_unreported_not_applicable_patches: Option<i64>,
}

Fields

instances: Option<i64>

The number of instances in the patch group.

instances_with_failed_patches: Option<i64>

The number of instances with patches from the patch baseline that failed to install.

instances_with_installed_other_patches: Option<i64>

The number of instances with patches installed that aren't defined in the patch baseline.

instances_with_installed_patches: Option<i64>

The number of instances with installed patches.

instances_with_installed_pending_reboot_patches: Option<i64>

The number of instances with patches installed by Patch Manager that have not been rebooted after the patch installation. The status of these instances is NON_COMPLIANT.

instances_with_installed_rejected_patches: 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 ALLOWAS_DEPENDENCY is the specified option for RejectedPatchesAction, the value of InstancesWithInstalledRejectedPatches will always be 0 (zero).

instances_with_missing_patches: Option<i64>

The number of instances with missing patches from the patch baseline.

instances_with_not_applicable_patches: Option<i64>

The number of instances with patches that aren't applicable.

instances_with_unreported_not_applicable_patches: Option<i64>

The number of instances with NotApplicable patches beyond the supported limit, which are not reported by name to Systems Manager Inventory.

Trait Implementations

impl Clone for DescribePatchGroupStateResult[src]

impl Debug for DescribePatchGroupStateResult[src]

impl Default for DescribePatchGroupStateResult[src]

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

impl PartialEq<DescribePatchGroupStateResult> for DescribePatchGroupStateResult[src]

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