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

AutoScalingGroupConfiguration

import type { AutoScalingGroupConfiguration } from "https://aws-api.deno.dev/v0.3/services/computeoptimizer.ts?docs=full";

Describes the configuration of an Auto Scaling group.

interface AutoScalingGroupConfiguration {
desiredCapacity?: number | null;
instanceType?: string | null;
maxSize?: number | null;
minSize?: number | null;
}

§Properties

§
desiredCapacity?: number | null
[src]

The desired capacity, or number of instances, for the Auto Scaling group.

§
instanceType?: string | null
[src]

The instance type for the Auto Scaling group.

§
maxSize?: number | null
[src]

The maximum size, or maximum number of instances, for the Auto Scaling group.

§
minSize?: number | null
[src]

The minimum size, or minimum number of instances, for the Auto Scaling group.