Interface CountPercent.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CountPercent.Builder,CountPercent>,SdkBuilder<CountPercent.Builder,CountPercent>,SdkPojo
- Enclosing class:
- CountPercent
public static interface CountPercent.Builder extends SdkPojo, CopyableBuilder<CountPercent.Builder,CountPercent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CountPercent.Buildercount(Integer count)Indicates the count of occurences of the given statistic.CountPercent.Builderpercentage(Float percentage)Indicates the percentage of occurances of the given statistic.-
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
-
count
CountPercent.Builder count(Integer count)
Indicates the count of occurences of the given statistic.
- Parameters:
count- Indicates the count of occurences of the given statistic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
percentage
CountPercent.Builder percentage(Float percentage)
Indicates the percentage of occurances of the given statistic.
- Parameters:
percentage- Indicates the percentage of occurances of the given statistic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-