Class: Aws::XRay::Types::GetTraceGraphRequest

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

Overview

Note:

When making an API call, you may pass GetTraceGraphRequest data as a hash:

{
  trace_ids: ["TraceId"], # required
  next_token: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

Pagination token. Not used.

Returns:

  • (String)


343
344
345
346
347
# File 'lib/aws-sdk-xray/types.rb', line 343

class GetTraceGraphRequest < Struct.new(
  :trace_ids,
  :next_token)
  include Aws::Structure
end

#trace_idsArray<String>

Trace IDs of requests for which to generate a service graph.

Returns:

  • (Array<String>)


343
344
345
346
347
# File 'lib/aws-sdk-xray/types.rb', line 343

class GetTraceGraphRequest < Struct.new(
  :trace_ids,
  :next_token)
  include Aws::Structure
end