Interface DateStatistics.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DateStatistics.Builder,DateStatistics>,SdkBuilder<DateStatistics.Builder,DateStatistics>,SdkPojo
- Enclosing class:
- DateStatistics
public static interface DateStatistics.Builder extends SdkPojo, CopyableBuilder<DateStatistics.Builder,DateStatistics>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DateStatistics.Builderdate(Instant date)The timestamp when the total findings count is observed.DateStatistics.BuilderlastGeneratedAt(Instant lastGeneratedAt)The timestamp at which the last finding in the findings count, was generated.DateStatistics.Builderseverity(Double severity)The severity of the findings generated on each date.DateStatistics.BuildertotalFindings(Integer totalFindings)The total number of findings that were generated per severity level on each date.-
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
-
date
DateStatistics.Builder date(Instant date)
The timestamp when the total findings count is observed.
For example,
Datewould look like"2024-09-05T17:00:00-07:00"whereasLastGeneratedAtwould look like 2024-09-05T17:12:29-07:00".- Parameters:
date- The timestamp when the total findings count is observed.For example,
Datewould look like"2024-09-05T17:00:00-07:00"whereasLastGeneratedAtwould look like 2024-09-05T17:12:29-07:00".- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastGeneratedAt
DateStatistics.Builder lastGeneratedAt(Instant lastGeneratedAt)
The timestamp at which the last finding in the findings count, was generated.
- Parameters:
lastGeneratedAt- The timestamp at which the last finding in the findings count, was generated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
severity
DateStatistics.Builder severity(Double severity)
The severity of the findings generated on each date.
- Parameters:
severity- The severity of the findings generated on each date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalFindings
DateStatistics.Builder totalFindings(Integer totalFindings)
The total number of findings that were generated per severity level on each date.
- Parameters:
totalFindings- The total number of findings that were generated per severity level on each date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-