Class: Aws::ApplicationSignals::Types::Edge
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::Edge
- Defined in:
- gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb
Overview
Represents a connection between two nodes in a dependency graph, showing how services or components interact with each other.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_type ⇒ String
The type of connection between the nodes, such as "HTTP", "Database", "Queue", or "Internal".
-
#destination_node_id ⇒ String
The identifier of the destination node in the dependency relationship.
-
#duration ⇒ Float
The typical duration or latency of interactions along this edge, measured in milliseconds.
-
#source_node_id ⇒ String
The identifier of the source node in the dependency relationship.
Instance Attribute Details
#connection_type ⇒ String
The type of connection between the nodes, such as "HTTP", "Database", "Queue", or "Internal".
666 667 668 669 670 671 672 673 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 666 class Edge < Struct.new( :source_node_id, :destination_node_id, :duration, :connection_type) SENSITIVE = [] include Aws::Structure end |
#destination_node_id ⇒ String
The identifier of the destination node in the dependency relationship.
666 667 668 669 670 671 672 673 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 666 class Edge < Struct.new( :source_node_id, :destination_node_id, :duration, :connection_type) SENSITIVE = [] include Aws::Structure end |
#duration ⇒ Float
The typical duration or latency of interactions along this edge, measured in milliseconds.
666 667 668 669 670 671 672 673 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 666 class Edge < Struct.new( :source_node_id, :destination_node_id, :duration, :connection_type) SENSITIVE = [] include Aws::Structure end |
#source_node_id ⇒ String
The identifier of the source node in the dependency relationship.
666 667 668 669 670 671 672 673 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 666 class Edge < Struct.new( :source_node_id, :destination_node_id, :duration, :connection_type) SENSITIVE = [] include Aws::Structure end |