Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AutoScalingInstanceDetails

import type { AutoScalingInstanceDetails } from "https://aws-api.deno.dev/v0.4/services/autoscaling.ts?docs=full";

Describes an EC2 instance associated with an Auto Scaling group.

interface AutoScalingInstanceDetails {
AutoScalingGroupName: string;
AvailabilityZone: string;
HealthStatus: string;
InstanceId: string;
InstanceType?: string | null;
LaunchConfigurationName?: string | null;
LaunchTemplate?: LaunchTemplateSpecification | null;
LifecycleState: string;
ProtectedFromScaleIn: boolean;
WeightedCapacity?: string | null;
}

§Properties

§
AutoScalingGroupName: string
[src]

The name of the Auto Scaling group for the instance.

§
AvailabilityZone: string
[src]

The Availability Zone for the instance.

§
HealthStatus: string
[src]

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 Amazon EC2 Auto Scaling should terminate and replace it.

§
InstanceId: string
[src]

The ID of the instance.

§
InstanceType?: string | null
[src]

The instance type of the EC2 instance.

§
LaunchConfigurationName?: string | null
[src]

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

§
LaunchTemplate?: LaunchTemplateSpecification | null
[src]

The launch template for the instance.

§
LifecycleState: string
[src]

The lifecycle state for the instance. The Quarantined state is not used. For information about lifecycle states, see Instance lifecycle in the Amazon EC2 Auto Scaling User Guide.

Valid values: Pending | Pending:Wait | Pending:Proceed | Quarantined | InService | Terminating | Terminating:Wait | Terminating:Proceed | Terminated | Detaching | Detached | EnteringStandby | Standby | Warmed:Pending | Warmed:Pending:Wait | Warmed:Pending:Proceed | Warmed:Terminating | Warmed:Terminating:Wait | Warmed:Terminating:Proceed | Warmed:Terminated | Warmed:Stopped | Warmed:Running

§
ProtectedFromScaleIn: boolean
[src]

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

§
WeightedCapacity?: string | null
[src]

The number of capacity units contributed by the instance based on its instance type.

Valid Range: Minimum value of 1. Maximum value of 999.