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

ScheduledUpdateGroupAction

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

Describes a scheduled scaling action.

interface ScheduledUpdateGroupAction {
AutoScalingGroupName?: string | null;
DesiredCapacity?: number | null;
EndTime?: Date | number | null;
MaxSize?: number | null;
MinSize?: number | null;
Recurrence?: string | null;
ScheduledActionARN?: string | null;
ScheduledActionName?: string | null;
StartTime?: Date | number | null;
Time?: Date | number | null;
TimeZone?: string | null;
}

§Properties

§
AutoScalingGroupName?: string | null
[src]

The name of the Auto Scaling group.

§
DesiredCapacity?: number | null
[src]

The desired capacity is the initial capacity of the Auto Scaling group after the scheduled action runs and the capacity it attempts to maintain.

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

The date and time in UTC for the recurring schedule to end. For example, "2019-06-01T00:00:00Z".

§
MaxSize?: number | null
[src]

The maximum size of the Auto Scaling group.

§
MinSize?: number | null
[src]

The minimum size of the Auto Scaling group.

§
Recurrence?: string | null
[src]

The recurring schedule for the action, in Unix cron syntax format.

When StartTime and EndTime are specified with Recurrence, they form the boundaries of when the recurring action starts and stops.

§
ScheduledActionARN?: string | null
[src]

The Amazon Resource Name (ARN) of the scheduled action.

§
ScheduledActionName?: string | null
[src]

The name of the scheduled action.

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

The date and time in UTC for this action to start. For example, "2019-06-01T00:00:00Z".

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

This property is no longer used.

§
TimeZone?: string | null
[src]

The time zone for the cron expression.