Module Values.UpdateAssessmentFrameworkControlSetSource

A controlSet entity that represents a collection of controls in Audit Manager. This doesn't contain the control set ID.

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

    The unique identifier for the control set.

    *)
  2. name : ControlSetName.t;
    (*

    The name of the control set.

    *)
  3. controls : CreateAssessmentFrameworkControls.t;
    (*

    The list of controls that are contained within the control set.

    *)
}
Sourceval context_ : string
Sourceval make : ?id:??? -> name:ControlSetName.t -> controls:CreateAssessmentFrameworkControls.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of UUID.t ]) list ] list | `String of ControlSetName.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