Interface DateRangeType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DateRangeType.Builder,DateRangeType>,SdkBuilder<DateRangeType.Builder,DateRangeType>,SdkPojo
- Enclosing class:
- DateRangeType
public static interface DateRangeType.Builder extends SdkPojo, CopyableBuilder<DateRangeType.Builder,DateRangeType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DateRangeType.BuilderendValue(Instant endValue)Timestamp range end value (in epochs).DateRangeType.BuilderstartValue(Instant startValue)Timestamp range start value (in epochs)-
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
-
startValue
DateRangeType.Builder startValue(Instant startValue)
Timestamp range start value (in epochs)
- Parameters:
startValue- Timestamp range start value (in epochs)- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endValue
DateRangeType.Builder endValue(Instant endValue)
Timestamp range end value (in epochs).
- Parameters:
endValue- Timestamp range end value (in epochs).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-