Class: Aws::XRay::Types::StartTraceRetrievalRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::StartTraceRetrievalRequest
- Includes:
- Structure
- Defined in:
- 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.
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_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.
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_ids ⇒ Array<String>
Specify the trace IDs of the traces to be retrieved.
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 |