Skip to content

Batch Import Evidence To Assessment Control

auditmanager_batch_import_evidence_to_assessment_control R Documentation

Adds one or more pieces of evidence to a control in an Audit Manager assessment

Description

Adds one or more pieces of evidence to a control in an Audit Manager assessment.

You can import manual evidence from any S3 bucket by specifying the S3 URI of the object. You can also upload a file from your browser, or enter plain text in response to a risk assessment question.

The following restrictions apply to this action:

  • manualEvidence can be only one of the following: evidenceFileName, s3ResourcePath, or textResponse

  • Maximum size of an individual evidence file: 100 MB

  • Number of daily manual evidence uploads per control: 100

  • Supported file formats: See Supported file types for manual evidence in the Audit Manager User Guide

For more information about Audit Manager service restrictions, see Quotas and restrictions for Audit Manager.

Usage

auditmanager_batch_import_evidence_to_assessment_control(assessmentId,
  controlSetId, controlId, manualEvidence)

Arguments

assessmentId

[required] The identifier for the assessment.

controlSetId

[required] The identifier for the control set.

controlId

[required] The identifier for the control.

manualEvidence

[required] The list of manual evidence objects.

Value

A list with the following syntax:

list(
  errors = list(
    list(
      manualEvidence = list(
        s3ResourcePath = "string",
        textResponse = "string",
        evidenceFileName = "string"
      ),
      errorCode = "string",
      errorMessage = "string"
    )
  )
)

Request syntax

svc$batch_import_evidence_to_assessment_control(
  assessmentId = "string",
  controlSetId = "string",
  controlId = "string",
  manualEvidence = list(
    list(
      s3ResourcePath = "string",
      textResponse = "string",
      evidenceFileName = "string"
    )
  )
)