Interface Stats.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Stats.Builder,Stats>,SdkBuilder<Stats.Builder,Stats>,SdkPojo
- Enclosing class:
- Stats
public static interface Stats.Builder extends SdkPojo, CopyableBuilder<Stats.Builder,Stats>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stats.Builderavg(Double avg)The average of the usage statistics.Stats.Buildermax(Double max)The maximum among the usage statistics.Stats.Buildermin(Double min)The minimum of the usage statistics.Stats.Buildersum(Double sum)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, sdkFields
-
-
-
-
Method Detail
-
avg
Stats.Builder avg(Double 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.
-
max
Stats.Builder max(Double 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.
-
min
Stats.Builder min(Double 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.
-
sum
Stats.Builder sum(Double 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.
-
-