Interface EndTimeRange.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EndTimeRange.Builder,EndTimeRange>,SdkBuilder<EndTimeRange.Builder,EndTimeRange>,SdkPojo
- Enclosing class:
- EndTimeRange
public static interface EndTimeRange.Builder extends SdkPojo, CopyableBuilder<EndTimeRange.Builder,EndTimeRange>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EndTimeRange.BuilderfromTime(Instant fromTime)The earliest end time in the time range.EndTimeRange.BuildertoTime(Instant toTime)The latest end time in the time range.-
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
-
fromTime
EndTimeRange.Builder fromTime(Instant fromTime)
The earliest end time in the time range.
- Parameters:
fromTime- The earliest end time in the time range.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toTime
EndTimeRange.Builder toTime(Instant toTime)
The latest end time in the time range.
- Parameters:
toTime- The latest end time in the time range.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-