Class: Aws::XRay::Types::StartTraceRetrievalRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::StartTraceRetrievalRequest
- Defined in:
- gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time ⇒ Time
The end of the time range to retrieve traces.
-
#start_time ⇒ Time
The start of the time range to retrieve traces.
-
#trace_ids ⇒ Array<String>
Specify the trace IDs of the traces to be retrieved.
Instance Attribute Details
#end_time ⇒ Time
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.
3342 3343 3344 3345 3346 3347 3348 |
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 3342 class StartTraceRetrievalRequest < Struct.new( :trace_ids, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
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.
3342 3343 3344 3345 3346 3347 3348 |
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 3342 class StartTraceRetrievalRequest < Struct.new( :trace_ids, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#trace_ids ⇒ Array<String>
Specify the trace IDs of the traces to be retrieved.
3342 3343 3344 3345 3346 3347 3348 |
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 3342 class StartTraceRetrievalRequest < Struct.new( :trace_ids, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |