Describe Assessment Targets
inspector_describe_assessment_targets | R Documentation |
Describes the assessment targets that are specified by the ARNs of the assessment targets¶
Description¶
Describes the assessment targets that are specified by the ARNs of the assessment targets.
Usage¶
Arguments¶
assessmentTargetArns
[required] The ARNs that specifies the assessment targets that you want to describe.
Value¶
A list with the following syntax:
list(
assessmentTargets = list(
list(
arn = "string",
name = "string",
resourceGroupArn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
)
)
),
failedItems = list(
list(
failureCode = "INVALID_ARN"|"DUPLICATE_ARN"|"ITEM_DOES_NOT_EXIST"|"ACCESS_DENIED"|"LIMIT_EXCEEDED"|"INTERNAL_ERROR",
retryable = TRUE|FALSE
)
)
)