Interface AnomalyScore.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AnomalyScore.Builder,AnomalyScore>,SdkBuilder<AnomalyScore.Builder,AnomalyScore>,SdkPojo
- Enclosing class:
- AnomalyScore
public static interface AnomalyScore.Builder extends SdkPojo, CopyableBuilder<AnomalyScore.Builder,AnomalyScore>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnomalyScore.BuildercurrentScore(Double currentScore)The last observed score.AnomalyScore.BuildermaxScore(Double maxScore)The maximum score that's observed during theAnomalyDateInterval.-
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
-
maxScore
AnomalyScore.Builder maxScore(Double maxScore)
The maximum score that's observed during the
AnomalyDateInterval.- Parameters:
maxScore- The maximum score that's observed during theAnomalyDateInterval.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
currentScore
AnomalyScore.Builder currentScore(Double currentScore)
The last observed score.
- Parameters:
currentScore- The last observed score.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-