products_v2s
Creates, updates, deletes, gets or lists a products_v2s resource.
Overview
| Name | products_v2s |
| Type | Resource |
| Id | aws.securityhub.products_v2s |
Fields
The following fields are returned by SELECT queries:
- describe_products_v2
| Name | Datatype | Description |
|---|---|---|
activation_url | string | The URL to the serviceV@ or productV2 documentation about the integration, which includes how to activate the integration. (pattern: <code>.\S.</code>) |
categories | array | The domains or functional areas the productV2 addresses. |
company_name | string | The name of the organization or vendor that provides the productV2. (pattern: <code>.\S.</code>) |
description | string | Detailed information about the productV2. (pattern: <code>.\S.</code>) |
integration_v2_types | array | The type of integration. |
marketplace_product_id | string | The identifier for the Amazon Web Services Marketplace product associated with this integration. (pattern: <code>.\S.</code>) |
marketplace_url | string | The console URL where you can purchase or subscribe to products. (pattern: <code>.\S.</code>) |
product_v2_name | string | The name of the productV2. (pattern: <code>.\S.</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_products_v2 | select | region | NextToken, MaxResults | Gets 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
MaxResults | integer | The maximum number of results to return. |
NextToken | string | The 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
- describe_products_v2
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 }}'
;