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.

Moves the specified instances out of the standby state.

After you put the instances back in service, the desired capacity is incremented.

For more information, see Temporarily removing instances from your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.

Note:

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

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

Syntax

C#
public abstract ExitStandbyResponse ExitStandby(
         ExitStandbyRequest request
)

Parameters

request
Type: Amazon.AutoScaling.Model.ExitStandbyRequest

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

Return Value


The response from the ExitStandby service method, as returned by AutoScaling.

Exceptions

ExceptionCondition
ResourceContentionException You already have a pending update to an Amazon EC2 Auto Scaling resource (for example, an Auto Scaling group, instance, or load balancer).

Examples

This example moves the specified instance out of standby mode.

To move instances out of standby mode


var client = new AmazonAutoScalingClient();
var response = client.ExitStandby(new ExitStandbyRequest 
{
    AutoScalingGroupName = "my-auto-scaling-group",
    InstanceIds = new List<string> {
        "i-93633f9b"
    }
});

List<Activity> activities = response.Activities;

            

Version Information

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

See Also