Module Values.CreateControlRequestSource

Creates a new custom control in Audit Manager.

Sourcetype nonrec t = {
  1. name : ControlName.t;
    (*

    The name of the control.

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

    The description of the control.

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

    The steps to follow to determine if the control is satisfied.

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

    The title of the action plan for remediating the control.

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

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

    *)
  6. controlMappingSources : CreateControlMappingSources.t;
    (*

    The data mapping sources for the control.

    *)
  7. tags : TagMap.t option;
    (*

    The tags that are associated with the control.

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