Struct rusoto_ssm::InstancePatchState[][src]

pub struct InstancePatchState {
    pub baseline_id: String,
    pub failed_count: Option<i64>,
    pub installed_count: Option<i64>,
    pub installed_other_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>,
}

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

The ID of the patch baseline used to patch the instance.

The number of patches from the patch baseline that were attempted to be installed during the last patching operation, but failed to install.

The number of patches from the patch baseline that are installed on the instance.

The number of patches not specified in the patch baseline that are installed on the instance.

The ID of the managed instance the high-level patch compliance information was collected for.

The number of patches from the patch baseline that are applicable for the instance but aren't currently installed.

The number of patches from the patch baseline that aren't applicable for the instance and hence aren't installed on the instance.

The type of patching operation that was performed: SCAN (assess patch compliance state) or INSTALL (install missing patches).

The time the most recent patching operation completed on the instance.

The time the most recent patching operation was started on the instance.

Placeholder information. This field will always be empty in the current release of the service.

The name of the patch group the managed instance belongs to.

The ID of the patch baseline snapshot used during the patching operation when this compliance data was collected.

Trait Implementations

impl Default for InstancePatchState
[src]

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

impl Debug for InstancePatchState
[src]

Formats the value using the given formatter. Read more

impl Clone for InstancePatchState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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