Skip to main content

products_v2s

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

Overview

Nameproducts_v2s
TypeResource
Idaws.securityhub.products_v2s

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
activation_urlstringThe URL to the serviceV@ or productV2 documentation about the integration, which includes how to activate the integration. (pattern: <code>.\S.</code>)
categoriesarrayThe domains or functional areas the productV2 addresses.
company_namestringThe name of the organization or vendor that provides the productV2. (pattern: <code>.\S.</code>)
descriptionstringDetailed information about the productV2. (pattern: <code>.\S.</code>)
integration_v2_typesarrayThe type of integration.
marketplace_product_idstringThe identifier for the Amazon Web Services Marketplace product associated with this integration. (pattern: <code>.\S.</code>)
marketplace_urlstringThe console URL where you can purchase or subscribe to products. (pattern: <code>.\S.</code>)
product_v2_namestringThe name of the productV2. (pattern: <code>.\S.</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_products_v2selectregionNextToken, MaxResultsGets information about the product integration.

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 required for pagination. On your first call, set the value of this parameter to NULL. For subsequent calls, to continue listing data, set the value of this parameter to the value returned in the previous response.

SELECT examples

Gets information about the product integration.

SELECT
activation_url,
categories,
company_name,
description,
integration_v2_types,
marketplace_product_id,
marketplace_url,
product_v2_name
FROM aws.securityhub.products_v2s
WHERE region = '{{ region }}' -- required
AND NextToken = '{{ NextToken }}'
AND MaxResults = '{{ MaxResults }}'
;