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.

This is the response object from the StartInstanceRefresh operation.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.AutoScaling.Model.StartInstanceRefreshResponse

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

Syntax

C#
public class StartInstanceRefreshResponse : AmazonWebServiceResponse

The StartInstanceRefreshResponse type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property InstanceRefreshId System.String

Gets and sets the property InstanceRefreshId.

A unique ID for tracking the progress of the instance refresh.

Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.

Examples

This example starts an instance refresh for the specified Auto Scaling group.

To start an instance refresh


var client = new AmazonAutoScalingClient();
var response = client.StartInstanceRefresh(new StartInstanceRefreshRequest 
{
    AutoScalingGroupName = "my-auto-scaling-group",
    DesiredConfiguration = new DesiredConfiguration { LaunchTemplate = new LaunchTemplateSpecification {
        LaunchTemplateName = "my-template-for-auto-scaling",
        Version = "$Latest"
    } },
    Preferences = new RefreshPreferences {
        AlarmSpecification = new AlarmSpecification { Alarms = new List<string> {
            "my-alarm"
        } },
        AutoRollback = true,
        InstanceWarmup = 200,
        MaxHealthyPercentage = 120,
        MinHealthyPercentage = 90
    }
});

string instanceRefreshId = response.InstanceRefreshId;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

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