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.

Returns:

  • (Float)


2615
2616
2617
2618
2619
2620
2621
# File 'lib/aws-sdk-xray/types.rb', line 2615

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

#idString

The unique identifier for the span.

Returns:

  • (String)


2615
2616
2617
2618
2619
2620
2621
# File 'lib/aws-sdk-xray/types.rb', line 2615

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

#spansArray<Types::Span>

Spans that comprise the trace.

Returns:



2615
2616
2617
2618
2619
2620
2621
# File 'lib/aws-sdk-xray/types.rb', line 2615

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