Module Values.DependencyGraphSource

A structure that represents the dependency relationships relevant to an audit finding, containing nodes and edges that show how services and resources are connected.

Sourcetype nonrec t = {
  1. nodes : Nodes.t option;
    (*

    An array of nodes representing the services, resources, or other entities in the dependency graph.

    *)
  2. edges : Edges.t option;
    (*

    An array of edges representing the connections and relationships between the nodes in the dependency graph.

    *)
}
Sourceval make : ?nodes:??? -> ?edges:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of Double.t | `Enum of string | `Map of ([> `String of KeyAttributeName.t ] * [> `String of KeyAttributeValue.t ]) list | `String of String_.t ]) list ] list ]) 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