aggregators_v2s
Creates, updates, deletes, gets or lists an aggregators_v2s resource.
Overview
| Name | aggregators_v2s |
| Type | Resource |
| Id | aws.securityhub.aggregators_v2s |
Fields
The following fields are returned by SELECT queries:
- list_aggregators_v2
| Name | Datatype | Description |
|---|---|---|
aggregator_v2_arn | string | The ARN of the aggregatorV2. (pattern: <code>.\S.</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_aggregators_v2 | select | region | NextToken, MaxResults | Retrieves 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.
| 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
- list_aggregators_v2
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 }}'
;