Amazon.AutoScaling.AmazonAutoScalingClient.DeleteAutoScalingGroup C# (CSharp) Method

DeleteAutoScalingGroup() public method

Deletes the specified Auto Scaling group.

If the group has instances or scaling activities in progress, you must specify the option to force the deletion in order for it to succeed.

If the group has policies, deleting the group deletes the policies, the underlying alarm actions, and any alarm that no longer has an associated action.

To remove instances from the Auto Scaling group before deleting it, call DetachInstances with the list of instances and the option to decrement the desired capacity so that Auto Scaling does not launch replacement instances.

To terminate all instances before deleting the Auto Scaling group, call UpdateAutoScalingGroup and set the minimum size and desired capacity of the Auto Scaling group to zero.

/// You already have a pending update to an Auto Scaling resource (for example, a group, /// instance, or load balancer). /// /// The operation can't be performed because the resource is in use. /// /// The operation can't be performed because there are scaling activities in progress. ///
public DeleteAutoScalingGroup ( DeleteAutoScalingGroupRequest request ) : DeleteAutoScalingGroupResponse
request DeleteAutoScalingGroupRequest Container for the necessary parameters to execute the DeleteAutoScalingGroup service method.
return DeleteAutoScalingGroupResponse
        public DeleteAutoScalingGroupResponse DeleteAutoScalingGroup(DeleteAutoScalingGroupRequest request)
        {
            var marshaller = new DeleteAutoScalingGroupRequestMarshaller();
            var unmarshaller = DeleteAutoScalingGroupResponseUnmarshaller.Instance;

            return Invoke<DeleteAutoScalingGroupRequest,DeleteAutoScalingGroupResponse>(request, marshaller, unmarshaller);
        }
AmazonAutoScalingClient