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