[][src]Struct rusoto_inspector::AssessmentRunAgent

pub struct AssessmentRunAgent {
    pub agent_health: String,
    pub agent_health_code: String,
    pub agent_health_details: Option<String>,
    pub agent_id: String,
    pub assessment_run_arn: String,
    pub auto_scaling_group: Option<String>,
    pub telemetry_metadata: Vec<TelemetryMetadata>,
}

Contains information about an Amazon Inspector agent. This data type is used as a response element in the ListAssessmentRunAgents action.

Fields

agent_health: String

The current health state of the agent.

agent_health_code: String

The detailed health state of the agent.

agent_health_details: Option<String>

The description for the agent health code.

agent_id: String

The AWS account of the EC2 instance where the agent is installed.

assessment_run_arn: String

The ARN of the assessment run that is associated with the agent.

auto_scaling_group: Option<String>

The Auto Scaling group of the EC2 instance that is specified by the agent ID.

telemetry_metadata: Vec<TelemetryMetadata>

The Amazon Inspector application data metrics that are collected by the agent.

Trait Implementations

impl PartialEq<AssessmentRunAgent> for AssessmentRunAgent[src]

impl Default for AssessmentRunAgent[src]

impl Clone for AssessmentRunAgent[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for AssessmentRunAgent[src]

impl<'de> Deserialize<'de> for AssessmentRunAgent[src]

Auto Trait Implementations

impl Send for AssessmentRunAgent

impl Sync for AssessmentRunAgent

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self