[][src]Struct rusoto_ssm::ComplianceSummaryItem

pub struct ComplianceSummaryItem {
    pub compliance_type: Option<String>,
    pub compliant_summary: Option<CompliantSummary>,
    pub non_compliant_summary: Option<NonCompliantSummary>,
}

A summary of compliance information by compliance type.

Fields

compliance_type: Option<String>

The type of compliance item. For example, the compliance type can be Association, Patch, or Custom:string.

compliant_summary: Option<CompliantSummary>

A list of COMPLIANT items for the specified compliance type.

non_compliant_summary: Option<NonCompliantSummary>

A list of NON_COMPLIANT items for the specified compliance type.

Trait Implementations

impl Clone for ComplianceSummaryItem[src]

impl Debug for ComplianceSummaryItem[src]

impl Default for ComplianceSummaryItem[src]

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

impl PartialEq<ComplianceSummaryItem> for ComplianceSummaryItem[src]

impl StructuralPartialEq for ComplianceSummaryItem[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.