account_integrations
Creates, updates, deletes, gets or lists an account_integrations resource.
Overview
| Name | account_integrations |
| Type | Resource |
| Id | aws.customer_profiles.account_integrations |
Fields
The following fields are returned by SELECT queries:
- list_account_integrations
| Name | Datatype | Description |
|---|---|---|
items | array | The list of ListAccountIntegration instances. |
next_token | string | The pagination token from the previous ListAccountIntegrations API call. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_account_integrations | select | region | next-token, max-results, include-hidden | Lists all of the integrations associated to a specific URI in the AWS account. |
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) |
max-results | integer | The maximum number of objects returned per page. |
next-token | string | The pagination token from the previous ListAccountIntegrations API call. |
SELECT examples
- list_account_integrations
Lists all of the integrations associated to a specific URI in the AWS account.
SELECT
items,
next_token
FROM aws.customer_profiles.account_integrations
WHERE region = '{{ region }}' -- required
AND `next-token` = '{{ next-token }}'
AND `max-results` = '{{ max-results }}'
AND `include-hidden` = '{{ include-hidden }}'
;