Update Assessment Control
auditmanager_update_assessment_control | R Documentation |
Updates a control within an assessment in Audit Manager¶
Description¶
Updates a control within an assessment in Audit Manager.
Usage¶
auditmanager_update_assessment_control(assessmentId, controlSetId,
controlId, controlStatus, commentBody)
Arguments¶
assessmentId |
[required] The unique identifier for the assessment. |
controlSetId |
[required] The unique identifier for the control set. |
controlId |
[required] The unique identifier for the control. |
controlStatus |
The status of the control. |
commentBody |
The comment body text for the control. |
Value¶
A list with the following syntax:
list(
control = list(
id = "string",
name = "string",
description = "string",
status = "UNDER_REVIEW"|"REVIEWED"|"INACTIVE",
response = "MANUAL"|"AUTOMATE"|"DEFER"|"IGNORE",
comments = list(
list(
authorName = "string",
commentBody = "string",
postedDate = as.POSIXct(
"2015-01-01"
)
)
),
evidenceSources = list(
"string"
),
evidenceCount = 123,
assessmentReportEvidenceCount = 123
)
)
Request syntax¶
svc$update_assessment_control(
assessmentId = "string",
controlSetId = "string",
controlId = "string",
controlStatus = "UNDER_REVIEW"|"REVIEWED"|"INACTIVE",
commentBody = "string"
)