Interface ErrorStatistics.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ErrorStatistics.Builder,ErrorStatistics>,SdkBuilder<ErrorStatistics.Builder,ErrorStatistics>,SdkPojo
- Enclosing class:
- ErrorStatistics
@Mutable @NotThreadSafe public static interface ErrorStatistics.Builder extends SdkPojo, CopyableBuilder<ErrorStatistics.Builder,ErrorStatistics>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ErrorStatistics.BuilderotherCount(Long otherCount)The number of requests that failed with untracked 4xx Client Error status codes.ErrorStatistics.BuilderthrottleCount(Long throttleCount)The number of requests that failed with a 429 throttling status code.ErrorStatistics.BuildertotalCount(Long totalCount)The total number of requests that failed with a 4xx Client Error status code.-
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
-
throttleCount
ErrorStatistics.Builder throttleCount(Long throttleCount)
The number of requests that failed with a 429 throttling status code.
- Parameters:
throttleCount- The number of requests that failed with a 429 throttling status code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
otherCount
ErrorStatistics.Builder otherCount(Long otherCount)
The number of requests that failed with untracked 4xx Client Error status codes.
- Parameters:
otherCount- The number of requests that failed with untracked 4xx Client Error status codes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalCount
ErrorStatistics.Builder totalCount(Long totalCount)
The total number of requests that failed with a 4xx Client Error status code.
- Parameters:
totalCount- The total number of requests that failed with a 4xx Client Error status code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-