Module Values.AssessmentControlSetSource

Represents a set of controls in an Audit Manager assessment.

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

    The identifier of the control set in the assessment. This is the control set name in a plain string format.

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

    The description for the control set.

    *)
  3. status : ControlSetStatus.t option;
    (*

    The current status of the control set.

    *)
  4. roles : Roles.t option;
    (*

    The roles that are associated with the control set.

    *)
  5. controls : AssessmentControls.t option;
    (*

    The list of controls that's contained with the control set.

    *)
  6. delegations : Delegations.t option;
    (*

    The delegations that are associated with the control set.

    *)
  7. systemEvidenceCount : Integer.t option;
    (*

    The total number of evidence objects that are retrieved automatically for the control set.

    *)
  8. manualEvidenceCount : Integer.t option;
    (*

    The total number of evidence objects that are uploaded manually to the control set.

    *)
}
Sourceval make : ?id:??? -> ?description:??? -> ?status:??? -> ?roles:??? -> ?controls:??? -> ?delegations:??? -> ?systemEvidenceCount:??? -> ?manualEvidenceCount:??? -> unit -> t
Sourceval to_value : t -> [> `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 ]
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