Skip to content

Get Finding Aggregator

securityhub_get_finding_aggregator R Documentation

Returns the current finding aggregation configuration

Description

Returns the current finding aggregation configuration.

Usage

securityhub_get_finding_aggregator(FindingAggregatorArn)

Arguments

FindingAggregatorArn

[required] The ARN of the finding aggregator to return details for. To obtain the ARN, use list_finding_aggregators.

Value

A list with the following syntax:

list(
  FindingAggregatorArn = "string",
  FindingAggregationRegion = "string",
  RegionLinkingMode = "string",
  Regions = list(
    "string"
  )
)

Request syntax

svc$get_finding_aggregator(
  FindingAggregatorArn = "string"
)

Examples

## Not run: 
# The following example returns cross-Region aggregation details for the
# requesting account.
svc$get_finding_aggregator(
  FindingAggregatorArn = "arn:aws:securityhub:us-east-1:123456789012:findin..."
)

## End(Not run)