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 of the time period filtered on.DateFilter.BuilderstartInclusive(Instant startInclusive)A timestamp representing the start of the time period filtered on.-
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
-
endInclusive
DateFilter.Builder endInclusive(Instant endInclusive)
A timestamp representing the end of the time period filtered on.
- Parameters:
endInclusive- A timestamp representing the end of the time period filtered on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startInclusive
DateFilter.Builder startInclusive(Instant startInclusive)
A timestamp representing the start of the time period filtered on.
- Parameters:
startInclusive- A timestamp representing the start of the time period filtered on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-