Interface DateRangeFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DateRangeFilter.Builder,DateRangeFilter>,SdkBuilder<DateRangeFilter.Builder,DateRangeFilter>,SdkPojo
- Enclosing class:
- DateRangeFilter
public static interface DateRangeFilter.Builder extends SdkPojo, CopyableBuilder<DateRangeFilter.Builder,DateRangeFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DateRangeFilter.BuilderendDateTime(Instant endDateTime)A timestamp indicating the end date for the date range filter.DateRangeFilter.BuilderstartDateTime(Instant startDateTime)A timestamp indicating the start date for the date range filter.-
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
-
startDateTime
DateRangeFilter.Builder startDateTime(Instant startDateTime)
A timestamp indicating the start date for the date range filter.
- Parameters:
startDateTime- A timestamp indicating the start date for the date range filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endDateTime
DateRangeFilter.Builder endDateTime(Instant endDateTime)
A timestamp indicating the end date for the date range filter.
- Parameters:
endDateTime- A timestamp indicating the end date for the date range filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-