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

LoadBasedAutoScalingConfiguration

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

Describes a layer's load-based auto scaling configuration.

interface LoadBasedAutoScalingConfiguration {
DownScaling?: AutoScalingThresholds | null;
Enable?: boolean | null;
LayerId?: string | null;
UpScaling?: AutoScalingThresholds | null;
}

§Properties

§
DownScaling?: AutoScalingThresholds | null
[src]

An AutoScalingThresholds object that describes the downscaling configuration, which defines how and when AWS OpsWorks Stacks reduces the number of instances.

§
Enable?: boolean | null
[src]

Whether load-based auto scaling is enabled for the layer.

§
LayerId?: string | null
[src]

The layer ID.

§
UpScaling?: AutoScalingThresholds | null
[src]

An AutoScalingThresholds object that describes the upscaling configuration, which defines how and when AWS OpsWorks Stacks increases the number of instances.