logo
pub struct DescribePatchGroupStateResult {
    pub instances: Option<i64>,
    pub instances_with_critical_non_compliant_patches: 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_other_non_compliant_patches: Option<i64>,
    pub instances_with_security_non_compliant_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_critical_non_compliant_patches: Option<i64>

The number of instances where patches that are specified as "Critical" for compliance reporting in the patch baseline are not installed. These patches might be missing, have failed installation, were rejected, or were installed but awaiting a required instance reboot. The status of these instances is NON_COMPLIANT.

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_other_non_compliant_patches: Option<i64>

The number of instances with patches installed that are specified as other than "Critical" or "Security" but are not compliant with the patch baseline. The status of these instances is NON_COMPLIANT.

instances_with_security_non_compliant_patches: Option<i64>

The number of instances where patches that are specified as "Security" in a patch advisory are not installed. These patches might be missing, have failed installation, were rejected, or were installed but awaiting a required instance reboot. The status of these instances is NON_COMPLIANT.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more