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.BuilderendTime(Instant endTime)Time in UTC at which the time range ends.TimeRange.BuilderstartTime(Instant startTime)Time in UTC at which the time range starts.-
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
-
endTime
TimeRange.Builder endTime(Instant endTime)
Time in UTC at which the time range ends.
- Parameters:
endTime- Time in UTC at which the time range ends.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTime
TimeRange.Builder startTime(Instant startTime)
Time in UTC at which the time range starts.
- Parameters:
startTime- Time in UTC at which the time range starts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-