Struct rusoto_autoscaling::AutoScalingInstanceDetails [] [src]

pub struct AutoScalingInstanceDetails {
    pub auto_scaling_group_name: String,
    pub availability_zone: String,
    pub health_status: String,
    pub instance_id: String,
    pub launch_configuration_name: String,
    pub lifecycle_state: String,
    pub protected_from_scale_in: bool,
}

Describes an EC2 instance associated with an Auto Scaling group.

Fields

The name of the Auto Scaling group associated with the instance.

The Availability Zone for the instance.

The last reported health status of this instance. "Healthy" means that the instance is healthy and should remain in service. "Unhealthy" means that the instance is unhealthy and Auto Scaling should terminate and replace it.

The ID of the instance.

The launch configuration used to launch the instance. This value is not available if you attached the instance to the Auto Scaling group.

The lifecycle state for the instance. For more information, see Auto Scaling Lifecycle in the Auto Scaling User Guide.

Indicates whether the instance is protected from termination by Auto Scaling when scaling in.

Trait Implementations

impl Default for AutoScalingInstanceDetails
[src]

[src]

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

impl Debug for AutoScalingInstanceDetails
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AutoScalingInstanceDetails
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations