Interface SeverityStatistics.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SeverityStatistics.Builder,SeverityStatistics>,SdkBuilder<SeverityStatistics.Builder,SeverityStatistics>,SdkPojo
- Enclosing class:
- SeverityStatistics
public static interface SeverityStatistics.Builder extends SdkPojo, CopyableBuilder<SeverityStatistics.Builder,SeverityStatistics>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SeverityStatistics.BuilderlastGeneratedAt(Instant lastGeneratedAt)The timestamp at which a finding type for a specific severity was last generated.SeverityStatistics.Builderseverity(Double severity)The severity level associated with each finding type.SeverityStatistics.BuildertotalFindings(Integer totalFindings)The total number of findings associated with this severity.-
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
-
lastGeneratedAt
SeverityStatistics.Builder lastGeneratedAt(Instant lastGeneratedAt)
The timestamp at which a finding type for a specific severity was last generated.
- Parameters:
lastGeneratedAt- The timestamp at which a finding type for a specific severity was last generated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
severity
SeverityStatistics.Builder severity(Double severity)
The severity level associated with each finding type.
- Parameters:
severity- The severity level associated with each finding type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalFindings
SeverityStatistics.Builder totalFindings(Integer totalFindings)
The total number of findings associated with this severity.
- Parameters:
totalFindings- The total number of findings associated with this severity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-