Module Values.UpdateControlRequestSource

Updates a custom control in Audit Manager.

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

    The identifier for the control.

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

    The name of the updated control.

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

    The optional description of the control.

    *)
  4. testingInformation : TestingInformation.t option;
    (*

    The steps that you should follow to determine if the control is met.

    *)
  5. actionPlanTitle : ActionPlanTitle.t option;
    (*

    The title of the action plan for remediating the control.

    *)
  6. actionPlanInstructions : ActionPlanInstructions.t option;
    (*

    The recommended actions to carry out if the control isn't fulfilled.

    *)
  7. controlMappingSources : ControlMappingSources.t;
    (*

    The data mapping sources for the control.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?testingInformation:??? -> ?actionPlanTitle:??? -> ?actionPlanInstructions:??? -> controlId:UUID.t -> name:ControlName.t -> controlMappingSources:ControlMappingSources.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of UUID.t | `Structure of (string * [> `Enum of string | `String of KeywordValue.t ]) list ]) 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