associated_stacks
Creates, updates, deletes, gets or lists an associated_stacks resource.
Overview
| Name | associated_stacks |
| Type | Resource |
| Id | aws.appstream.associated_stacks |
Fields
The following fields are returned by SELECT queries:
- list_associated_stacks
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the stack. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_associated_stacks | select | region | Retrieves the name of the stack with which the specified fleet is associated. |
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_associated_stacks
Retrieves the name of the stack with which the specified fleet is associated.
SELECT
name
FROM aws.appstream.associated_stacks
WHERE region = '{{ region }}' -- required
;