Interface Stats.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<Stats.Builder,
,Stats> SdkBuilder<Stats.Builder,
,Stats> SdkPojo
- Enclosing class:
Stats
@Mutable
@NotThreadSafe
public static interface Stats.Builder
extends SdkPojo, CopyableBuilder<Stats.Builder,Stats>
-
Method Summary
Modifier and TypeMethodDescriptionThe average of the usage statistics.The maximum among the usage statistics.The minimum of the usage statistics.The sum of the usage statistics.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
-
Method Details
-
min
The minimum of the usage statistics.
- Parameters:
min
- The minimum of the usage statistics.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
max
The maximum among the usage statistics.
- Parameters:
max
- The maximum among the usage statistics.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
avg
The average of the usage statistics.
- Parameters:
avg
- The average of the usage statistics.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sum
The sum of the usage statistics.
- Parameters:
sum
- The sum of the usage statistics.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-