Skip to content

Get Insight Results

securityhub_get_insight_results R Documentation

Lists the results of the Security Hub insight specified by the insight ARN

Description

Lists the results of the Security Hub insight specified by the insight ARN.

Usage

securityhub_get_insight_results(InsightArn)

Arguments

InsightArn

[required] The ARN of the insight for which to return results.

Value

A list with the following syntax:

list(
  InsightResults = list(
    InsightArn = "string",
    GroupByAttribute = "string",
    ResultValues = list(
      list(
        GroupByAttributeValue = "string",
        Count = 123
      )
    )
  )
)

Request syntax

svc$get_insight_results(
  InsightArn = "string"
)

Examples

## Not run: 
# The following example returns the results of the Security Hub insight
# specified by the insight ARN.
svc$get_insight_results(
  InsightArn = "arn:aws:securityhub:us-west-1:123456789012:insight/12345678..."
)

## End(Not run)