Interface Range.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Range.Builder,Range>,SdkBuilder<Range.Builder,Range>,SdkPojo
- Enclosing class:
- Range
public static interface Range.Builder extends SdkPojo, CopyableBuilder<Range.Builder,Range>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Range.BuilderendTime(Instant endTime)The end time of the range to exclude.Range.BuilderstartTime(Instant startTime)The start time of the range to exclude.-
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
Range.Builder startTime(Instant startTime)
The start time of the range to exclude. The format is
yyyy-MM-dd'T'HH:mm:ss. For example,2019-07-01T23:59:59.- Parameters:
startTime- The start time of the range to exclude. The format isyyyy-MM-dd'T'HH:mm:ss. For example,2019-07-01T23:59:59.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
Range.Builder endTime(Instant endTime)
The end time of the range to exclude. The format is
yyyy-MM-dd'T'HH:mm:ss. For example,2019-07-01T23:59:59.- Parameters:
endTime- The end time of the range to exclude. The format isyyyy-MM-dd'T'HH:mm:ss. For example,2019-07-01T23:59:59.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-