Module Values.GraphSource

A behavior graph in Detective.

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

    The ARN of the behavior graph.

    *)
  2. createdTime : Timestamp.t option;
    (*

    The date and time that the behavior graph was created. The value is an ISO8601 formatted string. For example, 2021-08-18T16:35:56.284Z.

    *)
}
Sourceval make : ?arn:??? -> ?createdTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GraphArn.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