Struct rusoto_inspector::AgentPreview[][src]

pub struct AgentPreview {
    pub agent_health: Option<String>,
    pub agent_id: String,
    pub agent_version: Option<String>,
    pub auto_scaling_group: Option<String>,
    pub hostname: Option<String>,
    pub ipv_4_address: Option<String>,
    pub kernel_version: Option<String>,
    pub operating_system: Option<String>,
}

Used as a response element in the PreviewAgents action.

Fields

The health status of the Amazon Inspector Agent.

The ID of the EC2 instance where the agent is installed.

The version of the Amazon Inspector Agent.

The Auto Scaling group for the EC2 instance where the agent is installed.

The hostname of the EC2 instance on which the Amazon Inspector Agent is installed.

The IP address of the EC2 instance on which the Amazon Inspector Agent is installed.

The kernel version of the operating system running on the EC2 instance on which the Amazon Inspector Agent is installed.

The operating system running on the EC2 instance on which the Amazon Inspector Agent is installed.

Trait Implementations

impl Default for AgentPreview
[src]

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

impl Debug for AgentPreview
[src]

Formats the value using the given formatter. Read more

impl Clone for AgentPreview
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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