application_associations
Creates, updates, deletes, gets or lists an application_associations resource.
Overview
| Name | application_associations |
| Type | Resource |
| Id | aws.appintegrations.application_associations |
Fields
The following fields are returned by SELECT queries:
- list_application_associations
| Name | Datatype | Description |
|---|---|---|
application_arn | string | The Amazon Resource Name (ARN) of the Application. (pattern: <code>^arn:aws:[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$</code>) |
application_association_arn | string | The Amazon Resource Name (ARN) of the Application Association. (pattern: <code>^arn:aws:[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$</code>) |
client_id | string | The identifier for the client that is associated with the Application Association. (pattern: <code>.*</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_application_associations | select | application_identifier, region | nextToken, maxResults | Returns a paginated list of application associations for an application. |
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 |
|---|---|---|
application_identifier | string | A unique identifier for the Application. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | The maximum number of results to return per page. |
nextToken | string | The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results. |
SELECT examples
- list_application_associations
Returns a paginated list of application associations for an application.
SELECT
application_arn,
application_association_arn,
client_id
FROM aws.appintegrations.application_associations
WHERE application_identifier = '{{ application_identifier }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;