Class: Aws::ApplicationSignals::Types::DependencyGraph
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::DependencyGraph
- Defined in:
- gems/aws-sdk-applicationsignals/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
-
#edges ⇒ Array<Types::Edge>
An array of edges representing the connections and relationships between the nodes in the dependency graph.
-
#nodes ⇒ Array<Types::Node>
An array of nodes representing the services, resources, or other entities in the dependency graph.
Instance Attribute Details
#edges ⇒ Array<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 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 642 class DependencyGraph < Struct.new( :nodes, :edges) SENSITIVE = [] include Aws::Structure end |
#nodes ⇒ Array<Types::Node>
An array of nodes representing the services, resources, or other entities in the dependency graph.
642 643 644 645 646 647 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 642 class DependencyGraph < Struct.new( :nodes, :edges) SENSITIVE = [] include Aws::Structure end |