[][src]Struct rusoto_ssm::ResourceComplianceSummaryItem

pub struct ResourceComplianceSummaryItem {
    pub compliance_type: Option<String>,
    pub compliant_summary: Option<CompliantSummary>,
    pub execution_summary: Option<ComplianceExecutionSummary>,
    pub non_compliant_summary: Option<NonCompliantSummary>,
    pub overall_severity: Option<String>,
    pub resource_id: Option<String>,
    pub resource_type: Option<String>,
    pub status: Option<String>,
}

Compliance summary information for a specific resource.

Fields

compliance_type: Option<String>

The compliance type.

compliant_summary: Option<CompliantSummary>

A list of items that are compliant for the resource.

execution_summary: Option<ComplianceExecutionSummary>

Information about the execution.

non_compliant_summary: Option<NonCompliantSummary>

A list of items that aren't compliant for the resource.

overall_severity: Option<String>

The highest severity item found for the resource. The resource is compliant for this item.

resource_id: Option<String>

The resource ID.

resource_type: Option<String>

The resource type.

status: Option<String>

The compliance status for the resource.

Trait Implementations

impl Clone for ResourceComplianceSummaryItem[src]

impl Debug for ResourceComplianceSummaryItem[src]

impl Default for ResourceComplianceSummaryItem[src]

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

impl PartialEq<ResourceComplianceSummaryItem> for ResourceComplianceSummaryItem[src]

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