enabled_products_for_imports
Creates, updates, deletes, gets or lists an enabled_products_for_imports resource.
Overview
| Name | enabled_products_for_imports |
| Type | Resource |
| Id | aws.securityhub.enabled_products_for_imports |
Fields
The following fields are returned by SELECT queries:
- list_enabled_products_for_import
| Name | Datatype | Description |
|---|---|---|
product_subscription | string | The list of ARNs for the resources that represent your subscriptions to products. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_enabled_products_for_import | select | region | NextToken, MaxResults | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
MaxResults | integer | The maximum number of items to return in the response. |
NextToken | string | The 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
- list_enabled_products_for_import
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 }}'
;