Skip to content

Delete Insight

securityhub_delete_insight R Documentation

Deletes the insight specified by the InsightArn

Description

Deletes the insight specified by the InsightArn.

Usage

securityhub_delete_insight(InsightArn)

Arguments

InsightArn

[required] The ARN of the insight to delete.

Value

A list with the following syntax:

list(
  InsightArn = "string"
)

Request syntax

svc$delete_insight(
  InsightArn = "string"
)

Examples

## Not run: 
# The following example deletes a custom insight in Security Hub.
svc$delete_insight(
  InsightArn = "arn:aws:securityhub:us-west-1:123456789012:insight/12345678..."
)

## End(Not run)