application_fleet_associations
Creates, updates, deletes, gets or lists an application_fleet_associations resource.
Overview
| Name | application_fleet_associations |
| Type | Resource |
| Id | aws.appstream.application_fleet_associations |
Fields
The following fields are returned by SELECT queries:
- describe_application_fleet_associations
| Name | Datatype | Description |
|---|---|---|
application_fleet_associations | array | The application fleet associations in the list. |
next_token | string | The pagination token used to retrieve the next page of results for this operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_application_fleet_associations | select | region | Retrieves a list that describes one or more application fleet associations. Either ApplicationArn or FleetName must be specified. |
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
- describe_application_fleet_associations
Retrieves a list that describes one or more application fleet associations. Either ApplicationArn or FleetName must be specified.
SELECT
application_fleet_associations,
next_token
FROM aws.appstream.application_fleet_associations
WHERE region = '{{ region }}' -- required
;