Interface TimeRange.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TimeRange.Builder,TimeRange>,SdkBuilder<TimeRange.Builder,TimeRange>,SdkPojo
- Enclosing class:
- TimeRange
public static interface TimeRange.Builder extends SdkPojo, CopyableBuilder<TimeRange.Builder,TimeRange>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimeRange.BuilderfromInclusive(Instant fromInclusive)The start time, in Unix time in seconds.TimeRange.BuildertoExclusive(Instant toExclusive)The end time, in Unix time in seconds.-
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
-
fromInclusive
TimeRange.Builder fromInclusive(Instant fromInclusive)
The start time, in Unix time in seconds.
- Parameters:
fromInclusive- The start time, in Unix time in seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toExclusive
TimeRange.Builder toExclusive(Instant toExclusive)
The end time, in Unix time in seconds.
- Parameters:
toExclusive- The end time, in Unix time in seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-