Class: Aws::ApplicationSignals::Types::DependencyGraph

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-applicationsignals/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#edgesArray<Types::Edge>

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



642
643
644
645
646
647
# File 'lib/aws-sdk-applicationsignals/types.rb', line 642

class DependencyGraph < Struct.new(
  :nodes,
  :edges)
  SENSITIVE = []
  include Aws::Structure
end

#nodesArray<Types::Node>

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



642
643
644
645
646
647
# File 'lib/aws-sdk-applicationsignals/types.rb', line 642

class DependencyGraph < Struct.new(
  :nodes,
  :edges)
  SENSITIVE = []
  include Aws::Structure
end