Skip to main content

enabled_products_for_imports

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

Overview

Nameenabled_products_for_imports
TypeResource
Idaws.securityhub.enabled_products_for_imports

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
product_subscriptionstringThe list of ARNs for the resources that represent your subscriptions to products.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_enabled_products_for_importselectregionNextToken, MaxResultsLists all findings-generating solutions (products) that you are subscribed to receive findings from in Security Hub CSPM.

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)
MaxResultsintegerThe maximum number of items to return in the response.
NextTokenstringThe token that is required for pagination. On your first call to the ListEnabledProductsForImport operation, set the value of this parameter to NULL. For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.

SELECT examples

Lists all findings-generating solutions (products) that you are subscribed to receive findings from in Security Hub CSPM.

SELECT
product_subscription
FROM aws.securityhub.enabled_products_for_imports
WHERE region = '{{ region }}' -- required
AND NextToken = '{{ NextToken }}'
AND MaxResults = '{{ MaxResults }}'
;