[][src]Struct rusoto_ssm::ComplianceItem

pub struct ComplianceItem {
    pub compliance_type: Option<String>,
    pub details: Option<HashMap<String, String>>,
    pub execution_summary: Option<ComplianceExecutionSummary>,
    pub id: Option<String>,
    pub resource_id: Option<String>,
    pub resource_type: Option<String>,
    pub severity: Option<String>,
    pub status: Option<String>,
    pub title: Option<String>,
}

Information about the compliance as defined by the resource type. For example, for a patch resource type, Items includes information about the PatchSeverity, Classification, and so on.

Fields

compliance_type: Option<String>

The compliance type. For example, Association (for a State Manager association), Patch, or Custom:string are all valid compliance types.

details: Option<HashMap<String, String>>

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

execution_summary: Option<ComplianceExecutionSummary>

A summary for the compliance item. The summary includes an execution ID, the execution type (for example, command), and the execution time.

id: Option<String>

An ID for the compliance item. For example, if the compliance item is a Windows patch, the ID could be the number of the KB article; for example: KB4010320.

resource_id: Option<String>

An ID for the resource. For a managed instance, this is the instance ID.

resource_type: Option<String>

The type of resource. ManagedInstance is currently the only supported resource type.

severity: Option<String>

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

status: Option<String>

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

title: Option<String>

A title for 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 Clone for ComplianceItem[src]

impl Debug for ComplianceItem[src]

impl Default for ComplianceItem[src]

impl<'de> Deserialize<'de> for ComplianceItem[src]

impl PartialEq<ComplianceItem> for ComplianceItem[src]

impl StructuralPartialEq for ComplianceItem[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.