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 count of findings from all severities.SeverityCounts.Buildercritical(Long critical)The total count of critical severity findings.SeverityCounts.Builderhigh(Long high)The total count of high severity findings.SeverityCounts.Buildermedium(Long medium)The total count of medium severity findings.-
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 count of findings from all severities.
- Parameters:
all- The total count of findings from all severities.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
critical
SeverityCounts.Builder critical(Long critical)
The total count of critical severity findings.
- Parameters:
critical- The total count of critical severity findings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
high
SeverityCounts.Builder high(Long high)
The total count of high severity findings.
- Parameters:
high- The total count of high severity findings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
medium
SeverityCounts.Builder medium(Long medium)
The total count of medium severity findings.
- Parameters:
medium- The total count of medium severity findings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-