Module Values.BatchImportEvidenceToAssessmentControlRequestSource

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.

Sourcetype nonrec t = {
  1. assessmentId : UUID.t;
    (*

    The identifier for the assessment.

    *)
  2. controlSetId : ControlSetId.t;
    (*

    The identifier for the control set.

    *)
  3. controlId : UUID.t;
    (*

    The identifier for the control.

    *)
  4. manualEvidence : ManualEvidenceList.t;
    (*

    The list of manual evidence objects.

    *)
}
Sourceval context_ : string
Sourceval make : assessmentId:UUID.t -> controlSetId:ControlSetId.t -> controlId:UUID.t -> manualEvidence:ManualEvidenceList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of S3Url.t ]) list ] list | `String of UUID.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t