Interface DateFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DateFilter.Builder,DateFilter>,SdkBuilder<DateFilter.Builder,DateFilter>,SdkPojo
- Enclosing class:
- DateFilter
public static interface DateFilter.Builder extends SdkPojo, CopyableBuilder<DateFilter.Builder,DateFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DateFilter.BuilderendInclusive(Instant endInclusive)A timestamp representing the end date of the time period until when data is filtered , including the end date.DateFilter.BuilderstartInclusive(Instant startInclusive)A timestamp representing the start of the time period from when data is filtered, including the start date.-
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
-
startInclusive
DateFilter.Builder startInclusive(Instant startInclusive)
A timestamp representing the start of the time period from when data is filtered, including the start date.
- Parameters:
startInclusive- A timestamp representing the start of the time period from when data is filtered, including the start date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endInclusive
DateFilter.Builder endInclusive(Instant endInclusive)
A timestamp representing the end date of the time period until when data is filtered , including the end date.
- Parameters:
endInclusive- A timestamp representing the end date of the time period until when data is filtered , including the end date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-