Struct rusoto_ssm::ListComplianceItemsResult[][src]

pub struct ListComplianceItemsResult {
    pub compliance_items: Option<Vec<ComplianceItem>>,
    pub next_token: Option<String>,
}

Fields

A list of compliance information for the specified resource ID.

The token for the next set of items to return. Use this token to get the next set of results.

Trait Implementations

impl Default for ListComplianceItemsResult
[src]

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

impl Debug for ListComplianceItemsResult
[src]

Formats the value using the given formatter. Read more

impl Clone for ListComplianceItemsResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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