Module Values.AssessmentFrameworkSource

The file used to structure and automate Audit Manager assessments for a given compliance standard.

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

    The unique identifier for the framework.

    *)
  2. arn : AuditManagerArn.t option;
    (*

    The Amazon Resource Name (ARN) of the framework.

    *)
  3. metadata : FrameworkMetadata.t option;
  4. controlSets : AssessmentControlSets.t option;
    (*

    The control sets that are associated with the framework.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?metadata:??? -> ?controlSets:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `List of [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `List of [> `String of NonEmptyString.t | `Structure of (string * [> `String of Username.t | `Timestamp of Timestamp.t ]) list ] list | `String of IamArn.t | `Timestamp of Timestamp.t ]) list ] list | `String of ControlSetId.t ]) list ] list | `String of UUID.t | `Structure of (string * [> `String of AssessmentName.t ]) list ]) 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