Interface Latency.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Latency.Builder,Latency>,SdkBuilder<Latency.Builder,Latency>,SdkPojo
- Enclosing class:
- Latency
public static interface Latency.Builder extends SdkPojo, CopyableBuilder<Latency.Builder,Latency>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Latency.Builderp10(Double p10)The average latency for the slowest 90 percent of requests over the last 10 seconds.Latency.Builderp50(Double p50)The average latency for the slowest 50 percent of requests over the last 10 seconds.Latency.Builderp75(Double p75)The average latency for the slowest 25 percent of requests over the last 10 seconds.Latency.Builderp85(Double p85)The average latency for the slowest 15 percent of requests over the last 10 seconds.Latency.Builderp90(Double p90)The average latency for the slowest 10 percent of requests over the last 10 seconds.Latency.Builderp95(Double p95)The average latency for the slowest 5 percent of requests over the last 10 seconds.Latency.Builderp99(Double p99)The average latency for the slowest 1 percent of requests over the last 10 seconds.Latency.Builderp999(Double p999)The average latency for the slowest 0.1 percent of requests over the last 10 seconds.-
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
-
p999
Latency.Builder p999(Double p999)
The average latency for the slowest 0.1 percent of requests over the last 10 seconds.
- Parameters:
p999- The average latency for the slowest 0.1 percent of requests over the last 10 seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
p99
Latency.Builder p99(Double p99)
The average latency for the slowest 1 percent of requests over the last 10 seconds.
- Parameters:
p99- The average latency for the slowest 1 percent of requests over the last 10 seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
p95
Latency.Builder p95(Double p95)
The average latency for the slowest 5 percent of requests over the last 10 seconds.
- Parameters:
p95- The average latency for the slowest 5 percent of requests over the last 10 seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
p90
Latency.Builder p90(Double p90)
The average latency for the slowest 10 percent of requests over the last 10 seconds.
- Parameters:
p90- The average latency for the slowest 10 percent of requests over the last 10 seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
p85
Latency.Builder p85(Double p85)
The average latency for the slowest 15 percent of requests over the last 10 seconds.
- Parameters:
p85- The average latency for the slowest 15 percent of requests over the last 10 seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
p75
Latency.Builder p75(Double p75)
The average latency for the slowest 25 percent of requests over the last 10 seconds.
- Parameters:
p75- The average latency for the slowest 25 percent of requests over the last 10 seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
p50
Latency.Builder p50(Double p50)
The average latency for the slowest 50 percent of requests over the last 10 seconds.
- Parameters:
p50- The average latency for the slowest 50 percent of requests over the last 10 seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
p10
Latency.Builder p10(Double p10)
The average latency for the slowest 90 percent of requests over the last 10 seconds.
- Parameters:
p10- The average latency for the slowest 90 percent of requests over the last 10 seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-