Interface SeverityCounts.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SeverityCounts.Builder,SeverityCounts>,SdkBuilder<SeverityCounts.Builder,SeverityCounts>,SdkPojo
- Enclosing class:
- SeverityCounts
public static interface SeverityCounts.Builder extends SdkPojo, CopyableBuilder<SeverityCounts.Builder,SeverityCounts>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SeverityCounts.Builderall(Long all)The total number of findings across all severity levels for the specified filter.SeverityCounts.Buildercritical(Long critical)The number of critical severity findings for the specified filter.SeverityCounts.Builderhigh(Long high)The number of high severity findings for the specified filter.SeverityCounts.Buildermedium(Long medium)The number of medium severity findings for the specified filter.-
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
-
all
SeverityCounts.Builder all(Long all)
The total number of findings across all severity levels for the specified filter.
- Parameters:
all- The total number of findings across all severity levels for the specified filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
critical
SeverityCounts.Builder critical(Long critical)
The number of critical severity findings for the specified filter.
- Parameters:
critical- The number of critical severity findings for the specified filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
high
SeverityCounts.Builder high(Long high)
The number of high severity findings for the specified filter.
- Parameters:
high- The number of high severity findings for the specified filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
medium
SeverityCounts.Builder medium(Long medium)
The number of medium severity findings for the specified filter.
- Parameters:
medium- The number of medium severity findings for the specified filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-