Module Values.UpdateAssessmentControlRequestSource

Updates a control within an assessment in Audit Manager.

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

    The unique identifier for the assessment.

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

    The unique identifier for the control set.

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

    The unique identifier for the control.

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

    The status of the control.

    *)
  5. commentBody : ControlCommentBody.t option;
    (*

    The comment body text for the control.

    *)
}
Sourceval context_ : string
Sourceval make : ?controlStatus:??? -> ?commentBody:??? -> assessmentId:UUID.t -> controlSetId:ControlSetId.t -> controlId:UUID.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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