Interface PredictionTimeRange.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PredictionTimeRange.Builder,PredictionTimeRange>,SdkBuilder<PredictionTimeRange.Builder,PredictionTimeRange>,SdkPojo
- Enclosing class:
- PredictionTimeRange
public static interface PredictionTimeRange.Builder extends SdkPojo, CopyableBuilder<PredictionTimeRange.Builder,PredictionTimeRange>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PredictionTimeRange.BuilderendTime(Instant endTime)The time when the behavior in a proactive insight is expected to end.PredictionTimeRange.BuilderstartTime(Instant startTime)The time range during which a metric limit is expected to be exceeded.-
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
-
startTime
PredictionTimeRange.Builder startTime(Instant startTime)
The time range during which a metric limit is expected to be exceeded. This applies to proactive insights only.
- Parameters:
startTime- The time range during which a metric limit is expected to be exceeded. This applies to proactive insights only.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
PredictionTimeRange.Builder endTime(Instant endTime)
The time when the behavior in a proactive insight is expected to end.
- Parameters:
endTime- The time when the behavior in a proactive insight is expected to end.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-