Module Values.RuleRevisionSource

The change to a rule that creates a revision of the rule.

Sourcetype nonrec t = {
  1. revisionId : Revision.t option;
    (*

    The system-generated unique ID that identifies the revision number of the rule.

    *)
  2. revisionChangeId : RevisionChangeIdentifier.t option;
    (*

    The unique identifier of the change that set the state to this revision (for example, a deployment ID or timestamp).

    *)
  3. created : Timestamp.t option;
    (*

    The date and time when the most recent version of the rule was created, in timestamp format.

    *)
}
Sourceval make : ?revisionId:??? -> ?revisionChangeId:??? -> ?created:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Revision.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