Interface RoundTripTime.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RoundTripTime.Builder,RoundTripTime>,SdkBuilder<RoundTripTime.Builder,RoundTripTime>,SdkPojo
- Enclosing class:
- RoundTripTime
public static interface RoundTripTime.Builder extends SdkPojo, CopyableBuilder<RoundTripTime.Builder,RoundTripTime>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RoundTripTime.Builderp50(Double p50)RTT at the 50th percentile (p50).RoundTripTime.Builderp90(Double p90)RTT at the 90th percentile (p90).RoundTripTime.Builderp95(Double p95)RTT at the 95th percentile (p95).-
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, sdkFields
-
-
-
-
Method Detail
-
p50
RoundTripTime.Builder p50(Double p50)
RTT at the 50th percentile (p50).
- Parameters:
p50- RTT at the 50th percentile (p50).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
p90
RoundTripTime.Builder p90(Double p90)
RTT at the 90th percentile (p90).
- Parameters:
p90- RTT at the 90th percentile (p90).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
p95
RoundTripTime.Builder p95(Double p95)
RTT at the 95th percentile (p95).
- Parameters:
p95- RTT at the 95th percentile (p95).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-