Interface SummarizedCounter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SummarizedCounter.Builder,SummarizedCounter>,SdkBuilder<SummarizedCounter.Builder,SummarizedCounter>,SdkPojo
- Enclosing class:
- SummarizedCounter
public static interface SummarizedCounter.Builder extends SdkPojo, CopyableBuilder<SummarizedCounter.Builder,SummarizedCounter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SummarizedCounter.Builderaverage(Double average)The average value of the counter for a specified time period.SummarizedCounter.Buildermax(Double max)The maximum value of the counter for a specified time period.SummarizedCounter.Buildern(Integer n)The number of counters for a specified time period.SummarizedCounter.Buildername(String name)The counter name.SummarizedCounter.Buildersum(Double sum)The total of counter values for a specified time period.SummarizedCounter.Builderunit(String unit)The unit of the counters.-
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 Detail
-
name
SummarizedCounter.Builder name(String name)
The counter name.
- Parameters:
name- The counter name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
max
SummarizedCounter.Builder max(Double max)
The maximum value of the counter for a specified time period.
- Parameters:
max- The maximum value of the counter for a specified time period.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
average
SummarizedCounter.Builder average(Double average)
The average value of the counter for a specified time period.
- Parameters:
average- The average value of the counter for a specified time period.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sum
SummarizedCounter.Builder sum(Double sum)
The total of counter values for a specified time period.
- Parameters:
sum- The total of counter values for a specified time period.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
n
SummarizedCounter.Builder n(Integer n)
The number of counters for a specified time period.
- Parameters:
n- The number of counters for a specified time period.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unit
SummarizedCounter.Builder unit(String unit)
The unit of the counters.
- Parameters:
unit- The unit of the counters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-