Struct rusoto_ec2::ActiveInstance[][src]

pub struct ActiveInstance {
    pub instance_health: Option<String>,
    pub instance_id: Option<String>,
    pub instance_type: Option<String>,
    pub spot_instance_request_id: Option<String>,
}

Describes a running instance in a Spot Fleet.

Fields

The health status of the instance. If the status of either the instance status check or the system status check is impaired, the health status of the instance is unhealthy. Otherwise, the health status is healthy.

The ID of the instance.

The instance type.

The ID of the Spot Instance request.

Trait Implementations

impl Default for ActiveInstance
[src]

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

impl Debug for ActiveInstance
[src]

Formats the value using the given formatter. Read more

impl Clone for ActiveInstance
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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