Get Evidence
auditmanager_get_evidence | R Documentation |
Gets information about a specified evidence item¶
Description¶
Gets information about a specified evidence item.
Usage¶
auditmanager_get_evidence(assessmentId, controlSetId, evidenceFolderId,
evidenceId)
Arguments¶
assessmentId |
[required] The unique identifier for the assessment. |
controlSetId |
[required] The unique identifier for the control set. |
evidenceFolderId |
[required] The unique identifier for the folder that the evidence is stored in. |
evidenceId |
[required] The unique identifier for the evidence. |
Value¶
A list with the following syntax:
list(
evidence = 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"
)
)
Request syntax¶
svc$get_evidence(
assessmentId = "string",
controlSetId = "string",
evidenceFolderId = "string",
evidenceId = "string"
)