Class: Aws::XRay::Types::GraphLink
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::GraphLink
- Includes:
- Structure
- Defined in:
- 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.
1499 1500 1501 1502 1503 1504 1505 |
# File 'lib/aws-sdk-xray/types.rb', line 1499 class GraphLink < Struct.new( :reference_type, :source_trace_id, :destination_trace_ids) SENSITIVE = [] include Aws::Structure end |