Values.ChangeLogSourceThe 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.
type nonrec t = {objectType : ObjectTypeEnum.t option;The object that was changed, such as an assessment, control, or control set.
*)objectName : NonEmptyString.t option;The name of the object that changed. This could be the name of an assessment, control, or control set.
*)action : ActionEnum.t option;The action that was performed.
*)createdAt : Timestamp.t option;The time when the action was performed and the changelog record was created.
*)createdBy : IamArn.t option;The user or role that performed the action.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of NonEmptyString.t
| `Timestamp of Timestamp.t ])
list ]