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

AutoScalingPlans

import { AutoScalingPlans } from "https://aws-api.deno.dev/v0.4/services/autoscalingplans.ts?docs=full";
class AutoScalingPlans {
constructor(apiFactory: client.ApiFactory);
async createScalingPlan(params: CreateScalingPlanRequest, opts?: client.RequestOptions): Promise<CreateScalingPlanResponse>;
async deleteScalingPlan(params: DeleteScalingPlanRequest, opts?: client.RequestOptions): Promise<void>;
async describeScalingPlanResources(params: DescribeScalingPlanResourcesRequest, opts?: client.RequestOptions): Promise<DescribeScalingPlanResourcesResponse>;
async describeScalingPlans(params?: DescribeScalingPlansRequest, opts?: client.RequestOptions): Promise<DescribeScalingPlansResponse>;
async getScalingPlanResourceForecastData(params: GetScalingPlanResourceForecastDataRequest, opts?: client.RequestOptions): Promise<GetScalingPlanResourceForecastDataResponse>;
async updateScalingPlan(params: UpdateScalingPlanRequest, opts?: client.RequestOptions): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new AutoScalingPlans(apiFactory: client.ApiFactory)
[src]

§Methods

§

Creates a scaling plan.

§
deleteScalingPlan(params: DeleteScalingPlanRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes the specified scaling plan.

Deleting a scaling plan deletes the underlying "ScalingInstruction" for all of the scalable resources that are covered by the plan.

If the plan has launched resources or has scaling activities in progress, you must delete those resources separately.

§

Describes the scalable resources in the specified scaling plan.

§

Describes one or more of your scaling plans.

§

Retrieves the forecast data for a scalable resource.

Capacity forecasts are represented as predicted values, or data points, that are calculated using historical data points from a specified CloudWatch load metric. Data points are available for up to 56 days.

§
updateScalingPlan(params: UpdateScalingPlanRequest, opts?: client.RequestOptions): Promise<void>
[src]

Updates the specified scaling plan.

You cannot update a scaling plan if it is in the process of being created, updated, or deleted.

§Static Properties