Class: Aws::XRay::Types::RetrievedTrace

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

Overview

Retrieved collection of spans with matching trace IDs.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#durationFloat

The length of time in seconds between the start time of the root span and the end time of the last span that completed.



2631
2632
2633
2634
2635
2636
2637
# File 'lib/aws-sdk-xray/types.rb', line 2631

class RetrievedTrace < Struct.new(
  :id,
  :duration,
  :spans)
  SENSITIVE = []
  include Aws::Structure
end

#idString

The unique identifier for the span.



2631
2632
2633
2634
2635
2636
2637
# File 'lib/aws-sdk-xray/types.rb', line 2631

class RetrievedTrace < Struct.new(
  :id,
  :duration,
  :spans)
  SENSITIVE = []
  include Aws::Structure
end

#spansArray<Types::Span>

Spans that comprise the trace.



2631
2632
2633
2634
2635
2636
2637
# File 'lib/aws-sdk-xray/types.rb', line 2631

class RetrievedTrace < Struct.new(
  :id,
  :duration,
  :spans)
  SENSITIVE = []
  include Aws::Structure
end