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 scheduled action for an Application Auto Scaling scalable target.

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

Note:

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

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

Syntax

C#
public abstract DeleteScheduledActionResponse DeleteScheduledAction(
         DeleteScheduledActionRequest request
)

Parameters

request
Type: Amazon.ApplicationAutoScaling.Model.DeleteScheduledActionRequest

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

Return Value


The response from the DeleteScheduledAction 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 scheduled action for the AppStream 2.0 fleet called sample-fleet.

To delete a scheduled action


var client = new AmazonApplicationAutoScalingClient();
var response = client.DeleteScheduledAction(new DeleteScheduledActionRequest 
{
    ResourceId = "fleet/sample-fleet",
    ScalableDimension = "appstream:fleet:DesiredCapacity",
    ScheduledActionName = "my-recurring-action",
    ServiceNamespace = "appstream"
});


            

Version Information

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

See Also