Struct rusoto_discovery::AgentConfigurationStatus[][src]

pub struct AgentConfigurationStatus {
    pub agent_id: Option<String>,
    pub description: Option<String>,
    pub operation_succeeded: Option<bool>,
}

Information about agents or connectors that were instructed to start collecting data. Information includes the agent/connector ID, a description of the operation, and whether the agent/connector configuration was updated.

Fields

The agent/connector ID.

A description of the operation performed.

Information about the status of the StartDataCollection and StopDataCollection operations. The system has recorded the data collection operation. The agent/connector receives this command the next time it polls for a new command.

Trait Implementations

impl Default for AgentConfigurationStatus
[src]

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

impl Debug for AgentConfigurationStatus
[src]

Formats the value using the given formatter. Read more

impl Clone for AgentConfigurationStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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