#[non_exhaustive]
pub struct DescribePatchGroupStateOutput { pub instances: i32, pub instances_with_installed_patches: i32, pub instances_with_installed_other_patches: i32, pub instances_with_installed_pending_reboot_patches: Option<i32>, pub instances_with_installed_rejected_patches: Option<i32>, pub instances_with_missing_patches: i32, pub instances_with_failed_patches: i32, pub instances_with_not_applicable_patches: i32, pub instances_with_unreported_not_applicable_patches: Option<i32>, pub instances_with_critical_non_compliant_patches: Option<i32>, pub instances_with_security_non_compliant_patches: Option<i32>, pub instances_with_other_non_compliant_patches: Option<i32>, }

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
instances: i32

The number of managed nodes in the patch group.

instances_with_installed_patches: i32

The number of managed nodes with installed patches.

instances_with_installed_other_patches: i32

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

instances_with_installed_pending_reboot_patches: Option<i32>

The number of managed nodes with patches installed by Patch Manager that haven't been rebooted after the patch installation. The status of these managed nodes is NON_COMPLIANT.

instances_with_installed_rejected_patches: Option<i32>

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

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

instances_with_missing_patches: i32

The number of managed nodes with missing patches from the patch baseline.

instances_with_failed_patches: i32

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

instances_with_not_applicable_patches: i32

The number of managed nodes with patches that aren't applicable.

instances_with_unreported_not_applicable_patches: Option<i32>

The number of managed nodes with NotApplicable patches beyond the supported limit, which aren't reported by name to Inventory. Inventory is a capability of Amazon Web Services Systems Manager.

instances_with_critical_non_compliant_patches: Option<i32>

The number of managed nodes where patches that are specified as Critical for compliance reporting in the patch baseline aren't installed. These patches might be missing, have failed installation, were rejected, or were installed but awaiting a required managed node reboot. The status of these managed nodes is NON_COMPLIANT.

instances_with_security_non_compliant_patches: Option<i32>

The number of managed nodes where patches that are specified as Security in a patch advisory aren't installed. These patches might be missing, have failed installation, were rejected, or were installed but awaiting a required managed node reboot. The status of these managed nodes is NON_COMPLIANT.

instances_with_other_non_compliant_patches: Option<i32>

The number of managed nodes with patches installed that are specified as other than Critical or Security but aren't compliant with the patch baseline. The status of these managed nodes is NON_COMPLIANT.

Implementations

The number of managed nodes in the patch group.

The number of managed nodes with installed patches.

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

The number of managed nodes with patches installed by Patch Manager that haven't been rebooted after the patch installation. The status of these managed nodes is NON_COMPLIANT.

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

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

The number of managed nodes with missing patches from the patch baseline.

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

The number of managed nodes with patches that aren't applicable.

The number of managed nodes with NotApplicable patches beyond the supported limit, which aren't reported by name to Inventory. Inventory is a capability of Amazon Web Services Systems Manager.

The number of managed nodes where patches that are specified as Critical for compliance reporting in the patch baseline aren't installed. These patches might be missing, have failed installation, were rejected, or were installed but awaiting a required managed node reboot. The status of these managed nodes is NON_COMPLIANT.

The number of managed nodes where patches that are specified as Security in a patch advisory aren't installed. These patches might be missing, have failed installation, were rejected, or were installed but awaiting a required managed node reboot. The status of these managed nodes is NON_COMPLIANT.

The number of managed nodes with patches installed that are specified as other than Critical or Security but aren't compliant with the patch baseline. The status of these managed nodes is NON_COMPLIANT.

Creates a new builder-style object to manufacture DescribePatchGroupStateOutput

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

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.

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