Class: Aws::XRay::Types::StartTraceRetrievalRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_timeTime

The end of the time range to retrieve traces. The range is inclusive, so the specified end time is included in the query. Specified as epoch time, the number of seconds since January 1, 1970, 00:00:00 UTC.

Returns:

  • (Time)


3212
3213
3214
3215
3216
3217
3218
# File 'lib/aws-sdk-xray/types.rb', line 3212

class StartTraceRetrievalRequest < Struct.new(
  :trace_ids,
  :start_time,
  :end_time)
  SENSITIVE = []
  include Aws::Structure
end

#start_timeTime

The start of the time range to retrieve traces. The range is inclusive, so the specified start time is included in the query. Specified as epoch time, the number of seconds since January 1, 1970, 00:00:00 UTC.

Returns:

  • (Time)


3212
3213
3214
3215
3216
3217
3218
# File 'lib/aws-sdk-xray/types.rb', line 3212

class StartTraceRetrievalRequest < Struct.new(
  :trace_ids,
  :start_time,
  :end_time)
  SENSITIVE = []
  include Aws::Structure
end

#trace_idsArray<String>

Specify the trace IDs of the traces to be retrieved.

Returns:

  • (Array<String>)


3212
3213
3214
3215
3216
3217
3218
# File 'lib/aws-sdk-xray/types.rb', line 3212

class StartTraceRetrievalRequest < Struct.new(
  :trace_ids,
  :start_time,
  :end_time)
  SENSITIVE = []
  include Aws::Structure
end