Skip to content

Get Evidence Folders By Assessment Control

auditmanager_get_evidence_folders_by_assessment_control R Documentation

Gets a list of evidence folders that are associated with a specified control in an Audit Manager assessment

Description

Gets a list of evidence folders that are associated with a specified control in an Audit Manager assessment.

Usage

auditmanager_get_evidence_folders_by_assessment_control(assessmentId,
  controlSetId, controlId, nextToken, maxResults)

Arguments

assessmentId

[required] The identifier for the assessment.

controlSetId

[required] The identifier for the control set.

controlId

[required] The identifier for the control.

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"
)

Request syntax

svc$get_evidence_folders_by_assessment_control(
  assessmentId = "string",
  controlSetId = "string",
  controlId = "string",
  nextToken = "string",
  maxResults = 123
)