[−][src]Struct rusoto_ssm::InstancePatchState
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
baseline_id: String
The ID of the patch baseline used to patch the instance.
failed_count: Option<i64>
The number of patches from the patch baseline that were attempted to be installed during the last patching operation, but failed to install.
install_override_list: Option<String>
An https URL or an Amazon S3 path-style URL to a list of patches to be installed. This patch installation list, which you maintain in an Amazon S3 bucket in YAML format and specify in the SSM document AWS-RunPatchBaseline
, overrides the patches specified by the default patch baseline.
For more information about the InstallOverrideList
parameter, see About the SSM Document AWS-RunPatchBaseline in the AWS Systems Manager User Guide.
installed_count: Option<i64>
The number of patches from the patch baseline that are installed on the instance.
installed_other_count: Option<i64>
The number of patches not specified in the patch baseline that are installed on the instance.
installed_rejected_count: 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 ALLOWASDEPENDENCY is the specified option for RejectedPatchesAction, the value of InstalledRejectedCount will always be 0 (zero).
instance_id: String
The ID of the managed instance the high-level patch compliance information was collected for.
missing_count: Option<i64>
The number of patches from the patch baseline that are applicable for the instance but aren't currently installed.
not_applicable_count: Option<i64>
The number of patches from the patch baseline that aren't applicable for the instance and therefore aren't installed on the instance. This number may be truncated if the list of patch names is very large. The number of patches beyond this limit are reported in UnreportedNotApplicableCount
.
operation: String
The type of patching operation that was performed: SCAN (assess patch compliance state) or INSTALL (install missing patches).
operation_end_time: f64
The time the most recent patching operation completed on the instance.
operation_start_time: f64
The time the most recent patching operation was started on the instance.
owner_information: Option<String>
Placeholder information. This field will always be empty in the current release of the service.
patch_group: String
The name of the patch group the managed instance belongs to.
snapshot_id: Option<String>
The ID of the patch baseline snapshot used during the patching operation when this compliance data was collected.
unreported_not_applicable_count: Option<i64>
The number of patches beyond the supported limit of NotApplicableCount
that are not reported by name to Systems Manager Inventory.
Trait Implementations
impl PartialEq<InstancePatchState> for InstancePatchState
[src]
fn eq(&self, other: &InstancePatchState) -> bool
[src]
fn ne(&self, other: &InstancePatchState) -> bool
[src]
impl Default for InstancePatchState
[src]
fn default() -> InstancePatchState
[src]
impl Clone for InstancePatchState
[src]
fn clone(&self) -> InstancePatchState
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for InstancePatchState
[src]
impl<'de> Deserialize<'de> for InstancePatchState
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for InstancePatchState
impl Sync for InstancePatchState
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self