Class: Aws::ApplicationSignals::Types::Edge

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#connection_typeString

The type of connection between the nodes, such as "HTTP", "Database", "Queue", or "Internal".

Returns:

  • (String)


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_idString

The identifier of the destination node in the dependency relationship.

Returns:

  • (String)


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

#durationFloat

The typical duration or latency of interactions along this edge, measured in milliseconds.

Returns:

  • (Float)


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_idString

The identifier of the source node in the dependency relationship.

Returns:

  • (String)


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