Struct rusoto_inspector::AssessmentRunAgent[][src]

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

The current health state of the agent.

The detailed health state of the agent.

The description for the agent health code.

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

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

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

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

Trait Implementations

impl Default for AssessmentRunAgent
[src]

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

impl Debug for AssessmentRunAgent
[src]

Formats the value using the given formatter. Read more

impl Clone for AssessmentRunAgent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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