Interface QueryFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QueryFilter.Builder,QueryFilter>,SdkBuilder<QueryFilter.Builder,QueryFilter>,SdkPojo
- Enclosing class:
- QueryFilter
public static interface QueryFilter.Builder extends SdkPojo, CopyableBuilder<QueryFilter.Builder,QueryFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default QueryFilter.BuilderdeltaTime(Consumer<DeltaTime.Builder> deltaTime)Used to limit data to that which has arrived since the last execution of the action.QueryFilter.BuilderdeltaTime(DeltaTime deltaTime)Used to limit data to that which has arrived since the last execution of the action.-
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
-
deltaTime
QueryFilter.Builder deltaTime(DeltaTime deltaTime)
Used to limit data to that which has arrived since the last execution of the action.
- Parameters:
deltaTime- Used to limit data to that which has arrived since the last execution of the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deltaTime
default QueryFilter.Builder deltaTime(Consumer<DeltaTime.Builder> deltaTime)
Used to limit data to that which has arrived since the last execution of the action.
This is a convenience method that creates an instance of theDeltaTime.Builderavoiding the need to create one manually viaDeltaTime.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todeltaTime(DeltaTime).- Parameters:
deltaTime- a consumer that will call methods onDeltaTime.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
deltaTime(DeltaTime)
-
-