Module Values.AssessmentControlSource

The control entity that represents a standard control or a custom control in an Audit Manager assessment.

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

    The identifier for the control.

    *)
  2. name : ControlName.t option;
    (*

    The name of the control.

    *)
  3. description : ControlDescription.t option;
    (*

    The description of the control.

    *)
  4. status : ControlStatus.t option;
    (*

    The status of the control.

    *)
  5. response : ControlResponse.t option;
    (*

    The response of the control.

    *)
  6. comments : ControlComments.t option;
    (*

    The list of comments that's attached to the control.

    *)
  7. evidenceSources : EvidenceSources.t option;
    (*

    The list of data sources for the evidence.

    *)
  8. evidenceCount : Integer.t option;
    (*

    The amount of evidence that's collected for the control.

    *)
  9. assessmentReportEvidenceCount : Integer.t option;
    (*

    The amount of evidence in the assessment report.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?description:??? -> ?status:??? -> ?response:??? -> ?comments:??? -> ?evidenceSources:??? -> ?evidenceCount:??? -> ?assessmentReportEvidenceCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `List of [> `String of NonEmptyString.t | `Structure of (string * [> `String of Username.t | `Timestamp of Timestamp.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