Skip to content

Get Insight Results

securityhub_get_insight_results R Documentation

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

Description

Lists the results of the Security Hub CSPM 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"
)