List Assessment Reports
auditmanager_list_assessment_reports | R Documentation |
Returns a list of assessment reports created in Audit Manager¶
Description¶
Returns a list of assessment reports created in Audit Manager.
Usage¶
Arguments¶
nextToken
The pagination token that's used to fetch the next set of results.
maxResults
Represents the maximum number of results on a page or for an API request call.
Value¶
A list with the following syntax:
list(
assessmentReports = list(
list(
id = "string",
name = "string",
description = "string",
assessmentId = "string",
assessmentName = "string",
author = "string",
status = "COMPLETE"|"IN_PROGRESS"|"FAILED",
creationTime = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)