Skip to content

List Finding Aggregators

securityhub_list_finding_aggregators R Documentation

If finding aggregation is enabled, then ListFindingAggregators returns the ARN of the finding aggregator

Description

If finding aggregation is enabled, then list_finding_aggregators returns the ARN of the finding aggregator. You can run this operation from any Region.

Usage

securityhub_list_finding_aggregators(NextToken, MaxResults)

Arguments

NextToken

The token returned with the previous set of results. Identifies the next set of results to return.

MaxResults

The maximum number of results to return. This operation currently only returns a single result.

Value

A list with the following syntax:

list(
  FindingAggregators = list(
    list(
      FindingAggregatorArn = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_finding_aggregators(
  NextToken = "string",
  MaxResults = 123
)

Examples

## Not run: 
# The following example disables the specified control in the specified
# security standard.
svc$list_finding_aggregators()

## End(Not run)