Interface TimeWindow.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TimeWindow.Builder,TimeWindow>,SdkBuilder<TimeWindow.Builder,TimeWindow>,SdkPojo
- Enclosing class:
- TimeWindow
public static interface TimeWindow.Builder extends SdkPojo, CopyableBuilder<TimeWindow.Builder,TimeWindow>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimeWindow.BuilderendTime(Instant endTime)The end time of an execution.TimeWindow.BuilderstartTime(Instant startTime)The start time of an execution.-
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
TimeWindow.Builder startTime(Instant startTime)
The start time of an execution.
- Parameters:
startTime- The start time of an execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
TimeWindow.Builder endTime(Instant endTime)
The end time of an execution. The end time must be after the start date.
- Parameters:
endTime- The end time of an execution. The end time must be after the start date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-