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

ApplicationAutoScaling

import { ApplicationAutoScaling } from "https://aws-api.deno.dev/v0.3/services/applicationautoscaling.ts?docs=full";
class ApplicationAutoScaling {
constructor(apiFactory: client.ApiFactory);
async deleteScalingPolicy(params: DeleteScalingPolicyRequest, opts?: client.RequestOptions): Promise<void>;
async deleteScheduledAction(params: DeleteScheduledActionRequest, opts?: client.RequestOptions): Promise<void>;
async deregisterScalableTarget(params: DeregisterScalableTargetRequest, opts?: client.RequestOptions): Promise<void>;
async describeScalableTargets(params: DescribeScalableTargetsRequest, opts?: client.RequestOptions): Promise<DescribeScalableTargetsResponse>;
async describeScalingActivities(params: DescribeScalingActivitiesRequest, opts?: client.RequestOptions): Promise<DescribeScalingActivitiesResponse>;
async describeScalingPolicies(params: DescribeScalingPoliciesRequest, opts?: client.RequestOptions): Promise<DescribeScalingPoliciesResponse>;
async describeScheduledActions(params: DescribeScheduledActionsRequest, opts?: client.RequestOptions): Promise<DescribeScheduledActionsResponse>;
async putScalingPolicy(params: PutScalingPolicyRequest, opts?: client.RequestOptions): Promise<PutScalingPolicyResponse>;
async putScheduledAction(params: PutScheduledActionRequest, opts?: client.RequestOptions): Promise<void>;
async registerScalableTarget(params: RegisterScalableTargetRequest, opts?: client.RequestOptions): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

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

§Methods

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

Deletes the specified scaling policy for an Application Auto Scaling scalable target.

Deleting a step scaling policy deletes the underlying alarm action, but does not delete the CloudWatch alarm associated with the scaling policy, even if it no longer has an associated action.

For more information, see Delete a step scaling policy and Delete a target tracking scaling policy in the Application Auto Scaling User Guide.

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

Deletes the specified scheduled action for an Application Auto Scaling scalable target.

For more information, see Delete a scheduled action in the Application Auto Scaling User Guide.

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

Deregisters an Application Auto Scaling scalable target when you have finished using it. To see which resources have been registered, use DescribeScalableTargets.

Note: Deregistering a scalable target deletes the scaling policies and the scheduled actions that are associated with it.

§

Gets information about the scalable targets in the specified namespace.

You can filter the results using ResourceIds and ScalableDimension.

§

Provides descriptive information about the scaling activities in the specified namespace from the previous six weeks.

You can filter the results using ResourceId and ScalableDimension.

§

Describes the Application Auto Scaling scaling policies for the specified service namespace.

You can filter the results using ResourceId, ScalableDimension, and PolicyNames.

For more information, see Target tracking scaling policies and Step scaling policies in the Application Auto Scaling User Guide.

§

Describes the Application Auto Scaling scheduled actions for the specified service namespace.

You can filter the results using the ResourceId, ScalableDimension, and ScheduledActionNames parameters.

For more information, see Scheduled scaling and Managing scheduled scaling in the Application Auto Scaling User Guide.

§

Creates or updates a scaling policy for an Application Auto Scaling scalable target.

Each scalable target is identified by a service namespace, resource ID, and scalable dimension. A scaling policy applies to the scalable target identified by those three attributes. You cannot create a scaling policy until you have registered the resource as a scalable target.

Multiple scaling policies can be in force at the same time for the same scalable target. You can have one or more target tracking scaling policies, one or more step scaling policies, or both. However, there is a chance that multiple policies could conflict, instructing the scalable target to scale out or in at the same time. Application Auto Scaling gives precedence to the policy that provides the largest capacity for both scale out and scale in. For example, if one policy increases capacity by 3, another policy increases capacity by 200 percent, and the current capacity is 10, Application Auto Scaling uses the policy with the highest calculated capacity (200% of 10 = 20) and scales out to 30.

We recommend caution, however, when using target tracking scaling policies with step scaling policies because conflicts between these policies can cause undesirable behavior. For example, if the step scaling policy initiates a scale-in activity before the target tracking policy is ready to scale in, the scale-in activity will not be blocked. After the scale-in activity completes, the target tracking policy could instruct the scalable target to scale out again.

For more information, see Target tracking scaling policies and Step scaling policies in the Application Auto Scaling User Guide.

Note: If a scalable target is deregistered, the scalable target is no longer available to execute scaling policies. Any scaling policies that were specified for the scalable target are deleted.

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

Creates or updates a scheduled action for an Application Auto Scaling scalable target.

Each scalable target is identified by a service namespace, resource ID, and scalable dimension. A scheduled action applies to the scalable target identified by those three attributes. You cannot create a scheduled action until you have registered the resource as a scalable target.

When start and end times are specified with a recurring schedule using a cron expression or rates, they form the boundaries for when the recurring action starts and stops.

To update a scheduled action, specify the parameters that you want to change. If you don't specify start and end times, the old values are deleted.

For more information, see Scheduled scaling in the Application Auto Scaling User Guide.

Note: If a scalable target is deregistered, the scalable target is no longer available to run scheduled actions. Any scheduled actions that were specified for the scalable target are deleted.

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

Registers or updates a scalable target.

A scalable target is a resource that Application Auto Scaling can scale out and scale in. Scalable targets are uniquely identified by the combination of resource ID, scalable dimension, and namespace.

When you register a new scalable target, you must specify values for minimum and maximum capacity. Current capacity will be adjusted within the specified range when scaling starts. Application Auto Scaling scaling policies will not scale capacity to values that are outside of this range.

After you register a scalable target, you do not need to register it again to use other Application Auto Scaling operations. To see which resources have been registered, use DescribeScalableTargets. You can also view the scaling policies for a service namespace by using DescribeScalableTargets. If you no longer need a scalable target, you can deregister it by using DeregisterScalableTarget.

To update a scalable target, specify the parameters that you want to change. Include the parameters that identify the scalable target: resource ID, scalable dimension, and namespace. Any parameters that you don't specify are not changed by this update request.

Note: If you call the RegisterScalableTarget API to update an existing scalable target, Application Auto Scaling retrieves the current capacity of the resource. If it is below the minimum capacity or above the maximum capacity, Application Auto Scaling adjusts the capacity of the scalable target to place it within these bounds, even if you don't include the MinCapacity or MaxCapacity request parameters.

§Static Properties