Module Values.ChangeLogSource

The record of a change within Audit Manager. For example, this could be the status change of an assessment or the delegation of a control set.

Sourcetype nonrec t = {
  1. objectType : ObjectTypeEnum.t option;
    (*

    The object that was changed, such as an assessment, control, or control set.

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

    The name of the object that changed. This could be the name of an assessment, control, or control set.

    *)
  3. action : ActionEnum.t option;
    (*

    The action that was performed.

    *)
  4. createdAt : Timestamp.t option;
    (*

    The time when the action was performed and the changelog record was created.

    *)
  5. createdBy : IamArn.t option;
    (*

    The user or role that performed the action.

    *)
}
Sourceval make : ?objectType:??? -> ?objectName:??? -> ?action:??? -> ?createdAt:??? -> ?createdBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.t | `Timestamp of Timestamp.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