Interface IncrementalRefresh.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IncrementalRefresh.Builder,IncrementalRefresh>,SdkBuilder<IncrementalRefresh.Builder,IncrementalRefresh>,SdkPojo
- Enclosing class:
- IncrementalRefresh
@Mutable @NotThreadSafe public static interface IncrementalRefresh.Builder extends SdkPojo, CopyableBuilder<IncrementalRefresh.Builder,IncrementalRefresh>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default IncrementalRefresh.BuilderlookbackWindow(Consumer<LookbackWindow.Builder> lookbackWindow)The lookback window setup for an incremental refresh configuration.IncrementalRefresh.BuilderlookbackWindow(LookbackWindow lookbackWindow)The lookback window setup for an incremental refresh configuration.-
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
-
lookbackWindow
IncrementalRefresh.Builder lookbackWindow(LookbackWindow lookbackWindow)
The lookback window setup for an incremental refresh configuration.
- Parameters:
lookbackWindow- The lookback window setup for an incremental refresh configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lookbackWindow
default IncrementalRefresh.Builder lookbackWindow(Consumer<LookbackWindow.Builder> lookbackWindow)
The lookback window setup for an incremental refresh configuration.
This is a convenience method that creates an instance of theLookbackWindow.Builderavoiding the need to create one manually viaLookbackWindow.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tolookbackWindow(LookbackWindow).- Parameters:
lookbackWindow- a consumer that will call methods onLookbackWindow.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
lookbackWindow(LookbackWindow)
-
-