Module Values.ControlMetadataSource

The metadata that's associated with the standard control or custom control.

Sourcetype nonrec t = {
  1. arn : AuditManagerArn.t option;
    (*

    The Amazon Resource Name (ARN) of the control.

    *)
  2. id : UUID.t option;
    (*

    The unique identifier for the control.

    *)
  3. name : ControlName.t option;
    (*

    The name of the control.

    *)
  4. controlSources : ControlSources.t option;
    (*

    The data source that determines where Audit Manager collects evidence from for the control.

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

    The time when the control was created.

    *)
  6. lastUpdatedAt : Timestamp.t option;
    (*

    The time when the control was most recently updated.

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?name:??? -> ?controlSources:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AuditManagerArn.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