Class: Aws::XRay::Types::GraphLink
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::XRay::Types::GraphLink
 
- Defined in:
- gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb
Overview
The relation between two services.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #destination_trace_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Destination traces of a link relationship. 
- 
  
    
      #reference_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Relationship of a trace to the corresponding service. 
- 
  
    
      #source_trace_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Source trace of a link relationship. 
Instance Attribute Details
#destination_trace_ids ⇒ Array<String>
Destination traces of a link relationship.
| 1515 1516 1517 1518 1519 1520 1521 | # File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 1515 class GraphLink < Struct.new( :reference_type, :source_trace_id, :destination_trace_ids) SENSITIVE = [] include Aws::Structure end | 
#reference_type ⇒ String
Relationship of a trace to the corresponding service.
| 1515 1516 1517 1518 1519 1520 1521 | # File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 1515 class GraphLink < Struct.new( :reference_type, :source_trace_id, :destination_trace_ids) SENSITIVE = [] include Aws::Structure end |