Get Evidence By Evidence Folder
auditmanager_get_evidence_by_evidence_folder | R Documentation |
Gets all evidence from a specified evidence folder in Audit Manager¶
Description¶
Gets all evidence from a specified evidence folder in Audit Manager.
Usage¶
auditmanager_get_evidence_by_evidence_folder(assessmentId, controlSetId,
evidenceFolderId, nextToken, maxResults)
Arguments¶
assessmentId |
[required] The identifier for the assessment. |
controlSetId |
[required] The identifier for the control set. |
evidenceFolderId |
[required] The unique identifier for the folder that the evidence is stored in. |
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(
evidence = list(
list(
dataSource = "string",
evidenceAwsAccountId = "string",
time = as.POSIXct(
"2015-01-01"
),
eventSource = "string",
eventName = "string",
evidenceByType = "string",
resourcesIncluded = list(
list(
arn = "string",
value = "string",
complianceCheck = "string"
)
),
attributes = list(
"string"
),
iamId = "string",
complianceCheck = "string",
awsOrganization = "string",
awsAccountId = "string",
evidenceFolderId = "string",
id = "string",
assessmentReportSelection = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$get_evidence_by_evidence_folder(
assessmentId = "string",
controlSetId = "string",
evidenceFolderId = "string",
nextToken = "string",
maxResults = 123
)