Struct rusoto_ssm::AssociationOverview[][src]

pub struct AssociationOverview {
    pub association_status_aggregated_count: Option<HashMap<String, i64>>,
    pub detailed_status: Option<String>,
    pub status: Option<String>,
}

Information about the association.

Fields

Returns the number of targets for the association status. For example, if you created an association with two instances, and one of them was successful, this would return the count of instances by status.

A detailed status of the association.

The status of the association. Status can be: Pending, Success, or Failed.

Trait Implementations

impl Default for AssociationOverview
[src]

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

impl Debug for AssociationOverview
[src]

Formats the value using the given formatter. Read more

impl Clone for AssociationOverview
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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