Interface PredictorEvent.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PredictorEvent.Builder,PredictorEvent>,SdkBuilder<PredictorEvent.Builder,PredictorEvent>,SdkPojo
- Enclosing class:
- PredictorEvent
public static interface PredictorEvent.Builder extends SdkPojo, CopyableBuilder<PredictorEvent.Builder,PredictorEvent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PredictorEvent.Builderdatetime(Instant datetime)The timestamp for when the event occurred.PredictorEvent.Builderdetail(String detail)The type of event.-
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
-
detail
PredictorEvent.Builder detail(String detail)
The type of event. For example,
Retrain. A retraining event denotes the timepoint when a predictor was retrained. Any monitor results from before theDatetimeare from the previous predictor. Any new metrics are for the newly retrained predictor.- Parameters:
detail- The type of event. For example,Retrain. A retraining event denotes the timepoint when a predictor was retrained. Any monitor results from before theDatetimeare from the previous predictor. Any new metrics are for the newly retrained predictor.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datetime
PredictorEvent.Builder datetime(Instant datetime)
The timestamp for when the event occurred.
- Parameters:
datetime- The timestamp for when the event occurred.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-