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.Builderother(Double other)Peak latency for operations unrelated to read and write operations.Latency.Builderread(Double read)Peak latency for read operations.Latency.Builderwrite(Double write)Peak latency for write operations.-
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
-
read
Latency.Builder read(Double read)
Peak latency for read operations.
- Parameters:
read- Peak latency for read operations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
write
Latency.Builder write(Double write)
Peak latency for write operations.
- Parameters:
write- Peak latency for write operations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
other
Latency.Builder other(Double other)
Peak latency for operations unrelated to read and write operations.
- Parameters:
other- Peak latency for operations unrelated to read and write operations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-