Module Values.UpdateAssessmentFrameworkRequestSource

Updates a custom framework in Audit Manager.

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

    The unique identifier for the framework.

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

    The name of the framework to be updated.

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

    The description of the updated framework.

    *)
  4. complianceType : ComplianceType.t option;
    (*

    The compliance type that the new custom framework supports, such as CIS or HIPAA.

    *)
  5. controlSets : UpdateAssessmentFrameworkControlSets.t;
    (*

    The control sets that are associated with the framework. The Controls object returns a partial response when called through Framework APIs. For a complete Controls object, use GetControl.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?complianceType:??? -> frameworkId:UUID.t -> name:FrameworkName.t -> controlSets:UpdateAssessmentFrameworkControlSets.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of UUID.t ]) list ] list | `String of ControlSetName.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