Skip to main content

aggregators_v2s

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

Overview

Nameaggregators_v2s
TypeResource
Idaws.securityhub.aggregators_v2s

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
aggregator_v2_arnstringThe ARN of the aggregatorV2. (pattern: <code>.\S.</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_aggregators_v2selectregionNextToken, MaxResultsRetrieves a list of V2 aggregators.

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

Retrieves a list of V2 aggregators.

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