Struct rusoto_ssm::DescribePatchGroupStateResult[][src]

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_missing_patches: Option<i64>,
    pub instances_with_not_applicable_patches: Option<i64>,
}

Fields

The number of instances in the patch group.

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

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

The number of instances with installed patches.

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

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

Trait Implementations

impl Default for DescribePatchGroupStateResult
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribePatchGroupStateResult
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribePatchGroupStateResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribePatchGroupStateResult
[src]

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

This method tests for !=.

Auto Trait Implementations