Struct rusoto_ssm::ComplianceItemEntry[][src]

pub struct ComplianceItemEntry {
    pub details: Option<HashMap<String, String>>,
    pub id: Option<String>,
    pub severity: String,
    pub status: String,
    pub title: Option<String>,
}

Information about a compliance item.

Fields

A "Key": "Value" tag combination for the compliance item.

The compliance item ID. For example, if the compliance item is a Windows patch, the ID could be the number of the KB article.

The severity of the compliance status. Severity can be one of the following: Critical, High, Medium, Low, Informational, Unspecified.

The status of the compliance item. An item is either COMPLIANT or NON_COMPLIANT.

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.

Trait Implementations

impl Default for ComplianceItemEntry
[src]

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

impl Debug for ComplianceItemEntry
[src]

Formats the value using the given formatter. Read more

impl Clone for ComplianceItemEntry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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