Skip to main content

available_solution_stacks

Creates, updates, deletes, gets or lists an available_solution_stacks resource.

Overview

Nameavailable_solution_stacks
TypeResource
Idaws.elasticbeanstalk.available_solution_stacks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
permitted_file_typesstringThe permitted file types allowed for a solution stack.
solution_stack_namestringThe name of the solution stack.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_available_solution_stacksselectregionReturns a list of the available solution stack names, with the public version first and then in reverse chronological order.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns a list of the available solution stack names, with the public version first and then in reverse chronological order.

SELECT
permitted_file_types,
solution_stack_name
FROM aws.elasticbeanstalk.available_solution_stacks
WHERE region = '{{ region }}' -- required
;