Struct rusoto_ssm::ComplianceItem[][src]

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, etc.

Fields

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

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

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

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.

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

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

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

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

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 Default for ComplianceItem
[src]

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

impl Debug for ComplianceItem
[src]

Formats the value using the given formatter. Read more

impl Clone for ComplianceItem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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