AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

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.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to DeleteScalingPolicyAsync.

Namespace: Amazon.ApplicationAutoScaling
Assembly: AWSSDK.ApplicationAutoScaling.dll
Version: 3.x.y.z

Syntax

C#
public abstract DeleteScalingPolicyResponse DeleteScalingPolicy(
         DeleteScalingPolicyRequest request
)

Parameters

request
Type: Amazon.ApplicationAutoScaling.Model.DeleteScalingPolicyRequest

Container for the necessary parameters to execute the DeleteScalingPolicy service method.

Return Value


The response from the DeleteScalingPolicy service method, as returned by ApplicationAutoScaling.

Exceptions

ExceptionCondition
ConcurrentUpdateException Concurrent updates caused an exception, for example, if you request an update to an Application Auto Scaling resource that already has a pending update.
InternalServiceException The service encountered an internal error.
ObjectNotFoundException The specified object could not be found. For any operation that depends on the existence of a scalable target, this exception is thrown if the scalable target with the specified service namespace, resource ID, and scalable dimension does not exist. For any operation that deletes or deregisters a resource, this exception is thrown if the resource cannot be found.
ValidationException An exception was thrown for a validation issue. Review the available parameters for the API request.

Examples

This example deletes a scaling policy for the Amazon ECS service called web-app, which is running in the default cluster.

To delete a scaling policy


var client = new AmazonApplicationAutoScalingClient();
var response = client.DeleteScalingPolicy(new DeleteScalingPolicyRequest 
{
    PolicyName = "web-app-cpu-lt-25",
    ResourceId = "service/default/web-app",
    ScalableDimension = "ecs:service:DesiredCount",
    ServiceNamespace = "ecs"
});


            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also