Struct rusoto_discovery::CustomerAgentInfo[][src]

pub struct CustomerAgentInfo {
    pub active_agents: i64,
    pub black_listed_agents: i64,
    pub healthy_agents: i64,
    pub shutdown_agents: i64,
    pub total_agents: i64,
    pub unhealthy_agents: i64,
    pub unknown_agents: i64,
}

Inventory data for installed discovery agents.

Fields

Number of active discovery agents.

Number of blacklisted discovery agents.

Number of healthy discovery agents

Number of discovery agents with status SHUTDOWN.

Total number of discovery agents.

Number of unhealthy discovery agents.

Number of unknown discovery agents.

Trait Implementations

impl Default for CustomerAgentInfo
[src]

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

impl Debug for CustomerAgentInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for CustomerAgentInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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