listAvailableSolutionStacks
inline suspend fun ElasticBeanstalkClient.listAvailableSolutionStacks(crossinline block: ListAvailableSolutionStacksRequest.Builder.() -> Unit): ListAvailableSolutionStacksResponse
Returns a list of the available solution stack names, with the public version first and then in reverse chronological order.
Samples
fun main() {
//sampleStart
// The following operation lists solution stacks for all currently available platform configurations
// and any that you have used in the past
val resp = elasticBeanstalkClient.listAvailableSolutionStacks()
//sampleEnd
}