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