Interface RateLimiterStatus.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<RateLimiterStatus.Builder,,RateLimiterStatus> SdkBuilder<RateLimiterStatus.Builder,,RateLimiterStatus> SdkPojo
- Enclosing class:
RateLimiterStatus
@Mutable
@NotThreadSafe
public static interface RateLimiterStatus.Builder
extends SdkPojo, CopyableBuilder<RateLimiterStatus.Builder,RateLimiterStatus>
-
Method Summary
Modifier and TypeMethodDescriptionThe number of rate limiters currently in use on the connection.maxAllowed(Integer maxAllowed) The maximum number of rate limiters allowed on the connection.The number of rate limiters remaining (available) on the connection.totalBandwidth(String totalBandwidth) The total bandwidth allocated across all rate limiters on the connection.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
maxAllowed
The maximum number of rate limiters allowed on the connection.
- Parameters:
maxAllowed- The maximum number of rate limiters allowed on the connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inUse
The number of rate limiters currently in use on the connection.
- Parameters:
inUse- The number of rate limiters currently in use on the connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
remaining
The number of rate limiters remaining (available) on the connection.
- Parameters:
remaining- The number of rate limiters remaining (available) on the connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalBandwidth
The total bandwidth allocated across all rate limiters on the connection.
- Parameters:
totalBandwidth- The total bandwidth allocated across all rate limiters on the connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-