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",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

Pagination token.

Returns:

  • (String)


151
152
153
154
155
156
# File 'lib/aws-sdk-xray/types.rb', line 151

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

#trace_idsArray<String>

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

Returns:

  • (Array<String>)


151
152
153
154
155
156
# File 'lib/aws-sdk-xray/types.rb', line 151

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