Class: Aws::XRay::Types::BatchGetTracesRequest

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 BatchGetTracesRequest 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)


131
132
133
134
135
# File 'lib/aws-sdk-xray/types.rb', line 131

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

#trace_idsArray<String>

Specify the trace IDs of requests for which to retrieve segments.

Returns:

  • (Array<String>)


131
132
133
134
135
# File 'lib/aws-sdk-xray/types.rb', line 131

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