Module Values.CreateAssessmentFrameworkRequestSource

Creates a custom framework in Audit Manager.

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

    The name of the new custom framework.

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

    An optional description for the new custom framework.

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

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

    *)
  4. controlSets : CreateAssessmentFrameworkControlSets.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.

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

    The tags that are associated with the framework.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?complianceType:??? -> ?tags:??? -> name:FrameworkName.t -> controlSets:CreateAssessmentFrameworkControlSets.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 | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of FrameworkName.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