Describe Exclusions
inspector_describe_exclusions | R Documentation |
Describes the exclusions that are specified by the exclusions' ARNs¶
Description¶
Describes the exclusions that are specified by the exclusions' ARNs.
Usage¶
Arguments¶
exclusionArns
[required] The list of ARNs that specify the exclusions that you want to describe.
locale
The locale into which you want to translate the exclusion's title, description, and recommendation.
Value¶
A list with the following syntax:
list(
exclusions = list(
list(
arn = "string",
title = "string",
description = "string",
recommendation = "string",
scopes = list(
list(
key = "INSTANCE_ID"|"RULES_PACKAGE_ARN",
value = "string"
)
),
attributes = list(
list(
key = "string",
value = "string"
)
)
)
),
failedItems = list(
list(
failureCode = "INVALID_ARN"|"DUPLICATE_ARN"|"ITEM_DOES_NOT_EXIST"|"ACCESS_DENIED"|"LIMIT_EXCEEDED"|"INTERNAL_ERROR",
retryable = TRUE|FALSE
)
)
)