Interface StatusCounts.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StatusCounts.Builder,StatusCounts>,SdkBuilder<StatusCounts.Builder,StatusCounts>,SdkPojo
- Enclosing class:
- StatusCounts
public static interface StatusCounts.Builder extends SdkPojo, CopyableBuilder<StatusCounts.Builder,StatusCounts>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StatusCounts.Builderfailed(Integer failed)The number of checks that failed.StatusCounts.Builderpassed(Integer passed)The number of checks that passed.StatusCounts.Builderskipped(Integer skipped)The number of checks that were skipped.-
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
-
failed
StatusCounts.Builder failed(Integer failed)
The number of checks that failed.
- Parameters:
failed- The number of checks that failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
passed
StatusCounts.Builder passed(Integer passed)
The number of checks that passed.
- Parameters:
passed- The number of checks that passed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
skipped
StatusCounts.Builder skipped(Integer skipped)
The number of checks that were skipped.
- Parameters:
skipped- The number of checks that were skipped.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-