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

Activity

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

Describes scaling activity, which is a long-running process that represents a change to your Auto Scaling group, such as changing its size or replacing an instance.

interface Activity {
ActivityId: string;
AutoScalingGroupARN?: string | null;
AutoScalingGroupName: string;
AutoScalingGroupState?: string | null;
Cause: string;
Description?: string | null;
Details?: string | null;
EndTime?: Date | number | null;
Progress?: number | null;
StartTime: Date | number;
StatusMessage?: string | null;
}

§Properties

§
ActivityId: string
[src]

The ID of the activity.

§
AutoScalingGroupARN?: string | null
[src]

The Amazon Resource Name (ARN) of the Auto Scaling group.

§
AutoScalingGroupName: string
[src]

The name of the Auto Scaling group.

§
AutoScalingGroupState?: string | null
[src]

The state of the Auto Scaling group, which is either InService or Deleted.

§
Cause: string
[src]

The reason the activity began.

§
Description?: string | null
[src]

A friendly, more verbose description of the activity.

§
Details?: string | null
[src]

The details about the activity.

§
EndTime?: Date | number | null
[src]

The end time of the activity.

§
Progress?: number | null
[src]

A value between 0 and 100 that indicates the progress of the activity.

§
StartTime: Date | number
[src]

The start time of the activity.

§

The current status of the activity.

§
StatusMessage?: string | null
[src]

A friendly, more verbose description of the activity status.