Struct rusoto_ssm::ComplianceSummaryItem[][src]

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

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

A list of COMPLIANT items for the specified compliance type.

A list of NON_COMPLIANT items for the specified compliance type.

Trait Implementations

impl Default for ComplianceSummaryItem
[src]

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

impl Debug for ComplianceSummaryItem
[src]

Formats the value using the given formatter. Read more

impl Clone for ComplianceSummaryItem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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