Interface RequestImpactStatistics.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RequestImpactStatistics.Builder,RequestImpactStatistics>,SdkBuilder<RequestImpactStatistics.Builder,RequestImpactStatistics>,SdkPojo
- Enclosing class:
- RequestImpactStatistics
@Mutable @NotThreadSafe public static interface RequestImpactStatistics.Builder extends SdkPojo, CopyableBuilder<RequestImpactStatistics.Builder,RequestImpactStatistics>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RequestImpactStatistics.BuilderfaultCount(Long faultCount)The number of requests that have resulted in a fault,RequestImpactStatistics.BuilderokCount(Long okCount)The number of successful requests.RequestImpactStatistics.BuildertotalCount(Long totalCount)The total number of requests to the service.-
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
-
faultCount
RequestImpactStatistics.Builder faultCount(Long faultCount)
The number of requests that have resulted in a fault,
- Parameters:
faultCount- The number of requests that have resulted in a fault,- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
okCount
RequestImpactStatistics.Builder okCount(Long okCount)
The number of successful requests.
- Parameters:
okCount- The number of successful requests.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalCount
RequestImpactStatistics.Builder totalCount(Long totalCount)
The total number of requests to the service.
- Parameters:
totalCount- The total number of requests to the service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-