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 ListAvailableSolutionStacks operation. Returns a list of the available solution stack names, with the public version first and then in reverse chronological order.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.ElasticBeanstalk.AmazonElasticBeanstalkRequest
      Amazon.ElasticBeanstalk.Model.ListAvailableSolutionStacksRequest

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

Syntax

C#
public class ListAvailableSolutionStacksRequest : AmazonElasticBeanstalkRequest
         IAmazonWebServiceRequest

The ListAvailableSolutionStacksRequest type exposes the following members

Constructors

Examples

The following operation lists solution stacks for all currently available platform configurations and any that you have used in the past:

To view solution stacks


var client = new AmazonElasticBeanstalkClient();
var response = client.ListAvailableSolutionStacks(new ListAvailableSolutionStacksRequest 
{
});

List<SolutionStackDescription> solutionStackDetails = response.SolutionStackDetails;
List<string> solutionStacks = response.SolutionStacks;

            

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