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 DescribeLaunchConfigurations operation. Gets information about the launch configurations in the account and Region.

Inheritance Hierarchy

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

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

Syntax

C#
public class DescribeLaunchConfigurationsRequest : AmazonAutoScalingRequest
         IAmazonWebServiceRequest

The DescribeLaunchConfigurationsRequest type exposes the following members

Constructors

Properties

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

Gets and sets the property LaunchConfigurationNames.

The launch configuration names. If you omit this property, all launch configurations are described.

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 100.

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 launch configuration.

To describe Auto Scaling launch configurations


var client = new AmazonAutoScalingClient();
var response = client.DescribeLaunchConfigurations(new DescribeLaunchConfigurationsRequest 
{
    LaunchConfigurationNames = new List<string> {
        "my-launch-config"
    }
});

List<LaunchConfiguration> launchConfigurations = response.LaunchConfigurations;

            

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