Module Values.ManualEvidenceSource

Evidence that's manually added to a control in Audit Manager. manualEvidence can be one of the following: evidenceFileName, s3ResourcePath, or textResponse.

Sourcetype nonrec t = {
  1. s3ResourcePath : S3Url.t option;
    (*

    The S3 URL of the object that's imported as manual evidence.

    *)
  2. textResponse : ManualEvidenceTextResponse.t option;
    (*

    The plain text response that's entered and saved as manual evidence.

    *)
  3. evidenceFileName : ManualEvidenceLocalFileName.t option;
    (*

    The name of the file that's uploaded as manual evidence. This name is populated using the evidenceFileName value from the GetEvidenceFileUploadUrl API response.

    *)
}
Sourceval make : ?s3ResourcePath:??? -> ?textResponse:??? -> ?evidenceFileName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3Url.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