Struct aws_sdk_ssm::types::ComplianceItemEntry
source · #[non_exhaustive]pub struct ComplianceItemEntry { /* private fields */ }Expand description
Information about a compliance item.
Implementations§
source§impl ComplianceItemEntry
impl ComplianceItemEntry
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
The compliance item ID. For example, if the compliance item is a Windows patch, the ID could be the number of the KB article.
sourcepub fn title(&self) -> Option<&str>
pub fn title(&self) -> Option<&str>
The title of the compliance item. For example, if the compliance item is a Windows patch, the title could be the title of the KB article for the patch; for example: Security Update for Active Directory Federation Services.
sourcepub fn severity(&self) -> Option<&ComplianceSeverity>
pub fn severity(&self) -> Option<&ComplianceSeverity>
The severity of the compliance status. Severity can be one of the following: Critical, High, Medium, Low, Informational, Unspecified.
sourcepub fn status(&self) -> Option<&ComplianceStatus>
pub fn status(&self) -> Option<&ComplianceStatus>
The status of the compliance item. An item is either COMPLIANT or NON_COMPLIANT.
source§impl ComplianceItemEntry
impl ComplianceItemEntry
sourcepub fn builder() -> ComplianceItemEntryBuilder
pub fn builder() -> ComplianceItemEntryBuilder
Creates a new builder-style object to manufacture ComplianceItemEntry.
Trait Implementations§
source§impl Clone for ComplianceItemEntry
impl Clone for ComplianceItemEntry
source§fn clone(&self) -> ComplianceItemEntry
fn clone(&self) -> ComplianceItemEntry
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ComplianceItemEntry
impl Debug for ComplianceItemEntry
source§impl PartialEq<ComplianceItemEntry> for ComplianceItemEntry
impl PartialEq<ComplianceItemEntry> for ComplianceItemEntry
source§fn eq(&self, other: &ComplianceItemEntry) -> bool
fn eq(&self, other: &ComplianceItemEntry) -> bool
This method tests for
self and other values to be equal, and is used
by ==.