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.

Container for the parameters to the DescribeAutoScalingInstances operation. Gets information about the Auto Scaling instances in the account and Region.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.AutoScaling.AmazonAutoScalingRequest
      Amazon.AutoScaling.Model.DescribeAutoScalingInstancesRequest

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

Syntax

C#
public class DescribeAutoScalingInstancesRequest : AmazonAutoScalingRequest
         IAmazonWebServiceRequest

The DescribeAutoScalingInstancesRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property InstanceIds System.Collections.Generic.List<System.String>

Gets and sets the property InstanceIds.

The IDs of the instances. If you omit this property, all Auto Scaling instances are described. If you specify an ID that does not exist, it is ignored with no error.

Array Members: Maximum number of 50 items.

Public Property MaxRecords System.Int32

Gets and sets the property MaxRecords.

The maximum number of items to return with this call. The default value is 50 and the maximum value is 50.

Public Property NextToken System.String

Gets and sets the property NextToken.

The token for the next set of items to return. (You received this token from a previous call.)

Examples

This example describes the specified Auto Scaling instance.

To describe one or more Auto Scaling instances


var client = new AmazonAutoScalingClient();
var response = client.DescribeAutoScalingInstances(new DescribeAutoScalingInstancesRequest 
{
    InstanceIds = new List<string> {
        "i-05b4f7d5be44822a6"
    }
});

List<AutoScalingInstanceDetails> autoScalingInstances = response.AutoScalingInstances;

            

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