Get Cis Scan Report
inspector2_get_cis_scan_report | R Documentation |
Retrieves a CIS scan report¶
Description¶
Retrieves a CIS scan report.
Usage¶
inspector2_get_cis_scan_report(reportFormat, scanArn, targetAccounts)
Arguments¶
reportFormat |
The format of the report. Valid values are |
scanArn |
[required] The scan ARN. |
targetAccounts |
The target accounts. |
Value¶
A list with the following syntax:
list(
status = "SUCCEEDED"|"FAILED"|"IN_PROGRESS",
url = "string"
)
Request syntax¶
svc$get_cis_scan_report(
reportFormat = "PDF"|"CSV",
scanArn = "string",
targetAccounts = list(
"string"
)
)