available_solution_stacks
Creates, updates, deletes, gets or lists an available_solution_stacks resource.
Overview
| Name | available_solution_stacks |
| Type | Resource |
| Id | aws.elasticbeanstalk.available_solution_stacks |
Fields
The following fields are returned by SELECT queries:
- list_available_solution_stacks
| Name | Datatype | Description |
|---|---|---|
permitted_file_types | string | The permitted file types allowed for a solution stack. |
solution_stack_name | string | The name of the solution stack. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_available_solution_stacks | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_available_solution_stacks
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
;