Class: Aws::ApplicationSignals::Types::Node
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::ApplicationSignals::Types::Node
 
- Defined in:
- gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb
Overview
Represents a node in a dependency graph, typically corresponding to a service or component in your application architecture.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #duration  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The typical response time or processing duration for this node, measured in milliseconds. 
- 
  
    
      #key_attributes  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A map of key attributes that identify and describe the node, such as service name, environment, and other metadata. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The display name of the node, typically the service or component name. 
- 
  
    
      #node_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A unique identifier for the node within the dependency graph. 
- 
  
    
      #operation  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The specific operation or endpoint within the service that this node represents, if applicable. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The current health status of the node, such as "Healthy", "Warning", or "Critical". 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of node, such as "Service", "Database", "Queue", or "External". 
Instance Attribute Details
#duration ⇒ Float
The typical response time or processing duration for this node, measured in milliseconds.
| 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 | # File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2115 class Node < Struct.new( :key_attributes, :name, :node_id, :operation, :type, :duration, :status) SENSITIVE = [] include Aws::Structure end | 
#key_attributes ⇒ Hash<String,String>
A map of key attributes that identify and describe the node, such as service name, environment, and other metadata.
| 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 | # File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2115 class Node < Struct.new( :key_attributes, :name, :node_id, :operation, :type, :duration, :status) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The display name of the node, typically the service or component name.
| 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 | # File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2115 class Node < Struct.new( :key_attributes, :name, :node_id, :operation, :type, :duration, :status) SENSITIVE = [] include Aws::Structure end | 
#node_id ⇒ String
A unique identifier for the node within the dependency graph.
| 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 | # File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2115 class Node < Struct.new( :key_attributes, :name, :node_id, :operation, :type, :duration, :status) SENSITIVE = [] include Aws::Structure end | 
#operation ⇒ String
The specific operation or endpoint within the service that this node represents, if applicable.
| 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 | # File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2115 class Node < Struct.new( :key_attributes, :name, :node_id, :operation, :type, :duration, :status) SENSITIVE = [] include Aws::Structure end | 
#status ⇒ String
The current health status of the node, such as "Healthy", "Warning", or "Critical".
| 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 | # File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2115 class Node < Struct.new( :key_attributes, :name, :node_id, :operation, :type, :duration, :status) SENSITIVE = [] include Aws::Structure end | 
#type ⇒ String
The type of node, such as "Service", "Database", "Queue", or "External".
| 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 | # File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2115 class Node < Struct.new( :key_attributes, :name, :node_id, :operation, :type, :duration, :status) SENSITIVE = [] include Aws::Structure end |