Struct rusoto_ssm::ResourceComplianceSummaryItem[][src]

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

The compliance type.

A list of items that are compliant for the resource.

Information about the execution.

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

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

The resource ID.

The resource type.

The compliance status for the resource.

Trait Implementations

impl Default for ResourceComplianceSummaryItem
[src]

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

impl Debug for ResourceComplianceSummaryItem
[src]

Formats the value using the given formatter. Read more

impl Clone for ResourceComplianceSummaryItem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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