#[non_exhaustive]
pub struct PatchComplianceData { pub title: Option<String>, pub kb_id: Option<String>, pub classification: Option<String>, pub severity: Option<String>, pub state: Option<PatchComplianceDataState>, pub installed_time: Option<DateTime>, pub cve_ids: Option<String>, }
Expand description

Information about the state of a patch on a particular managed node as it relates to the patch baseline used to patch the node.

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.
title: Option<String>

The title of the patch.

kb_id: Option<String>

The operating system-specific ID of the patch.

classification: Option<String>

The classification of the patch, such as SecurityUpdates, Updates, and CriticalUpdates.

severity: Option<String>

The severity of the patch such as Critical, Important, and Moderate.

state: Option<PatchComplianceDataState>

The state of the patch on the managed node, such as INSTALLED or FAILED.

For descriptions of each patch state, see About patch compliance in the Amazon Web Services Systems Manager User Guide.

installed_time: Option<DateTime>

The date/time the patch was installed on the managed node. Not all operating systems provide this level of information.

cve_ids: Option<String>

The IDs of one or more Common Vulnerabilities and Exposure (CVE) issues that are resolved by the patch.

Implementations

The title of the patch.

The operating system-specific ID of the patch.

The classification of the patch, such as SecurityUpdates, Updates, and CriticalUpdates.

The severity of the patch such as Critical, Important, and Moderate.

The state of the patch on the managed node, such as INSTALLED or FAILED.

For descriptions of each patch state, see About patch compliance in the Amazon Web Services Systems Manager User Guide.

The date/time the patch was installed on the managed node. Not all operating systems provide this level of information.

The IDs of one or more Common Vulnerabilities and Exposure (CVE) issues that are resolved by the patch.

Creates a new builder-style object to manufacture PatchComplianceData

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