Skip to main content

account_integrations

Creates, updates, deletes, gets or lists an account_integrations resource.

Overview

Nameaccount_integrations
TypeResource
Idaws.customer_profiles.account_integrations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
itemsarrayThe list of ListAccountIntegration instances.
next_tokenstringThe pagination token from the previous ListAccountIntegrations API call.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_account_integrationsselectregionnext-token, max-results, include-hiddenLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
include-hiddenbooleanBoolean to indicate if hidden integration should be returned. Defaults to False.
max-resultsintegerThe maximum number of objects returned per page.
next-tokenstringThe pagination token from the previous ListAccountIntegrations API call.

SELECT examples

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 }}'
;