Get Evidence Folders By Assessment
auditmanager_get_evidence_folders_by_assessment | R Documentation |
Gets the evidence folders from a specified assessment in Audit Manager¶
Description¶
Gets the evidence folders from a specified assessment in Audit Manager.
Usage¶
Arguments¶
assessmentId
[required] The unique identifier for the assessment.
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(
evidenceFolders = list(
list(
name = "string",
date = as.POSIXct(
"2015-01-01"
),
assessmentId = "string",
controlSetId = "string",
controlId = "string",
id = "string",
dataSource = "string",
author = "string",
totalEvidence = 123,
assessmentReportSelectionCount = 123,
controlName = "string",
evidenceResourcesIncludedCount = 123,
evidenceByTypeConfigurationDataCount = 123,
evidenceByTypeManualCount = 123,
evidenceByTypeComplianceCheckCount = 123,
evidenceByTypeComplianceCheckIssuesCount = 123,
evidenceByTypeUserActivityCount = 123,
evidenceAwsServiceSourceCount = 123
)
),
nextToken = "string"
)