Interface TimestampRange.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TimestampRange.Builder,TimestampRange>,SdkBuilder<TimestampRange.Builder,TimestampRange>,SdkPojo
- Enclosing class:
- TimestampRange
public static interface TimestampRange.Builder extends SdkPojo, CopyableBuilder<TimestampRange.Builder,TimestampRange>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimestampRange.BuilderendTimestamp(Instant endTimestamp)The ending timestamp for the specified range.TimestampRange.BuilderstartTimestamp(Instant startTimestamp)The starting timestamp for the specified 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
startTimestamp
TimestampRange.Builder startTimestamp(Instant startTimestamp)
The starting timestamp for the specified range.
- Parameters:
startTimestamp- The starting timestamp for the specified range.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTimestamp
TimestampRange.Builder endTimestamp(Instant endTimestamp)
The ending timestamp for the specified range.
- Parameters:
endTimestamp- The ending timestamp for the specified range.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-