Interface StartTraceRetrievalRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<StartTraceRetrievalRequest.Builder,StartTraceRetrievalRequest>,SdkBuilder<StartTraceRetrievalRequest.Builder,StartTraceRetrievalRequest>,SdkPojo,SdkRequest.Builder,XRayRequest.Builder
- Enclosing class:
- StartTraceRetrievalRequest
@Mutable @NotThreadSafe public static interface StartTraceRetrievalRequest.Builder extends XRayRequest.Builder, SdkPojo, CopyableBuilder<StartTraceRetrievalRequest.Builder,StartTraceRetrievalRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StartTraceRetrievalRequest.BuilderendTime(Instant endTime)The end of the time range to retrieve traces.StartTraceRetrievalRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)StartTraceRetrievalRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)StartTraceRetrievalRequest.BuilderstartTime(Instant startTime)The start of the time range to retrieve traces.StartTraceRetrievalRequest.BuildertraceIds(String... traceIds)Specify the trace IDs of the traces to be retrieved.StartTraceRetrievalRequest.BuildertraceIds(Collection<String> traceIds)Specify the trace IDs of the traces to be retrieved.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.xray.model.XRayRequest.Builder
build
-
-
-
-
Method Detail
-
traceIds
StartTraceRetrievalRequest.Builder traceIds(Collection<String> traceIds)
Specify the trace IDs of the traces to be retrieved.
- Parameters:
traceIds- Specify the trace IDs of the traces to be retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
traceIds
StartTraceRetrievalRequest.Builder traceIds(String... traceIds)
Specify the trace IDs of the traces to be retrieved.
- Parameters:
traceIds- Specify the trace IDs of the traces to be retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTime
StartTraceRetrievalRequest.Builder startTime(Instant startTime)
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.
- Parameters:
startTime- 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:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
StartTraceRetrievalRequest.Builder endTime(Instant endTime)
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.
- Parameters:
endTime- 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:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
StartTraceRetrievalRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
StartTraceRetrievalRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-