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

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

Overview

A structure that represents a connection between two nodes in a dependency graph, showing the relationship and characteristics of the connection.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#connection_typeString

The type of connection between the nodes, indicating the nature of the relationship.

Returns:

  • (String)


705
706
707
708
709
710
711
712
# File 'lib/aws-sdk-applicationsignals/types.rb', line 705

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 this edge connection.

Returns:

  • (String)


705
706
707
708
709
710
711
712
# File 'lib/aws-sdk-applicationsignals/types.rb', line 705

class Edge < Struct.new(
  :source_node_id,
  :destination_node_id,
  :duration,
  :connection_type)
  SENSITIVE = []
  include Aws::Structure
end

#durationFloat

The duration or latency associated with this connection, if applicable.

Returns:

  • (Float)


705
706
707
708
709
710
711
712
# File 'lib/aws-sdk-applicationsignals/types.rb', line 705

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 this edge connection.

Returns:

  • (String)


705
706
707
708
709
710
711
712
# File 'lib/aws-sdk-applicationsignals/types.rb', line 705

class Edge < Struct.new(
  :source_node_id,
  :destination_node_id,
  :duration,
  :connection_type)
  SENSITIVE = []
  include Aws::Structure
end