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

SetInstanceHealthQuery

import type { SetInstanceHealthQuery } from "https://aws-api.deno.dev/v0.4/services/autoscaling.ts?docs=full";
interface SetInstanceHealthQuery {
HealthStatus: string;
InstanceId: string;
ShouldRespectGracePeriod?: boolean | null;
}

§Properties

§
HealthStatus: string
[src]

The health status of the instance. Set to Healthy to have the instance remain in service. Set to Unhealthy to have the instance be out of service. Amazon EC2 Auto Scaling terminates and replaces the unhealthy instance.

§
InstanceId: string
[src]

The ID of the instance.

§
ShouldRespectGracePeriod?: boolean | null
[src]

If the Auto Scaling group of the specified instance has a HealthCheckGracePeriod specified for the group, by default, this call respects the grace period. Set this to False, to have the call not respect the grace period associated with the group.

For more information about the health check grace period, see CreateAutoScalingGroup in the Amazon EC2 Auto Scaling API Reference.