Module Values.UpdateAssessmentControlSetStatusRequestSource

Updates the status of a control set in an Audit Manager assessment.

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

    The unique identifier for the assessment.

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

    The unique identifier for the control set.

    *)
  3. status : ControlSetStatus.t;
    (*

    The status of the control set that's being updated.

    *)
  4. comment : DelegationComment.t;
    (*

    The comment that's related to the status update.

    *)
}
Sourceval context_ : string
Sourceval make : assessmentId:UUID.t -> controlSetId:String_.t -> status:ControlSetStatus.t -> comment:DelegationComment.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