Skip to main content

products

Creates, updates, deletes, gets or lists a products resource.

Overview

Nameproducts
TypeResource
Idaws.securityhub.products

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
activation_urlstringThe URL to the service or product documentation about the integration with Security Hub CSPM, including how to activate the integration. (pattern: <code>.\S.</code>)
categoriesarrayThe categories assigned to the product.
company_namestringThe name of the company that provides the product. (pattern: <code>.\S.</code>)
descriptionstringA description of the product. (pattern: <code>.\S.</code>)
integration_typesarrayThe types of integration that the product supports. Available values are the following. SEND_FINDINGS_TO_SECURITY_HUB - The integration sends findings to Security Hub CSPM. RECEIVE_FINDINGS_FROM_SECURITY_HUB - The integration receives findings from Security Hub CSPM. UPDATE_FINDINGS_IN_SECURITY_HUB - The integration does not send new findings to Security Hub CSPM, but does make updates to the findings that it receives from Security Hub CSPM.
marketplace_urlstringFor integrations with Amazon Web Services services, the Amazon Web Services Console URL from which to activate the service. For integrations with third-party products, the Amazon Web Services Marketplace URL from which to subscribe to or purchase the product. (pattern: <code>.\S.</code>)
product_arnstringThe ARN assigned to the product. (pattern: <code>.\S.</code>)
product_namestringThe name of the product. (pattern: <code>.\S.</code>)
product_subscription_resource_policystringThe resource policy associated with the product. (pattern: <code>.\S.</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_productsselectregionNextToken, MaxResults, ProductArnReturns information about product integrations in Security Hub CSPM. You can optionally provide an integration ARN. If you provide an integration ARN, then the results only include that integration. If you don't provide an integration ARN, then the results include all of the available product integrations.

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 results to return.
NextTokenstringThe token that is required for pagination. On your first call to the DescribeProducts 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.
ProductArnstringThe ARN of the integration to return.

SELECT examples

Returns information about product integrations in Security Hub CSPM. You can optionally provide an integration ARN. If you provide an integration ARN, then the results only include that integration. If you don't provide an integration ARN, then the results include all of the available product integrations.

SELECT
activation_url,
categories,
company_name,
description,
integration_types,
marketplace_url,
product_arn,
product_name,
product_subscription_resource_policy
FROM aws.securityhub.products
WHERE region = '{{ region }}' -- required
AND NextToken = '{{ NextToken }}'
AND MaxResults = '{{ MaxResults }}'
AND ProductArn = '{{ ProductArn }}'
;