Interface ExecutionConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExecutionConfiguration.Builder,ExecutionConfiguration>,SdkBuilder<ExecutionConfiguration.Builder,ExecutionConfiguration>,SdkPojo
- Enclosing class:
- ExecutionConfiguration
public static interface ExecutionConfiguration.Builder extends SdkPojo, CopyableBuilder<ExecutionConfiguration.Builder,ExecutionConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ExecutionConfiguration.BuilderexecutionMode(String executionMode)The mode for data import/export execution.ExecutionConfiguration.BuilderexecutionMode(ExecutionMode executionMode)The mode for data import/export execution.default ExecutionConfiguration.BuilderonDemandConfiguration(Consumer<OnDemandConfiguration.Builder> onDemandConfiguration)Sets the value of the OnDemandConfiguration property for this object.ExecutionConfiguration.BuilderonDemandConfiguration(OnDemandConfiguration onDemandConfiguration)Sets the value of the OnDemandConfiguration property for this object.default ExecutionConfiguration.BuilderscheduleConfiguration(Consumer<ScheduleConfiguration.Builder> scheduleConfiguration)Sets the value of the ScheduleConfiguration property for this object.ExecutionConfiguration.BuilderscheduleConfiguration(ScheduleConfiguration scheduleConfiguration)Sets the value of the ScheduleConfiguration property for this object.-
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
-
executionMode
ExecutionConfiguration.Builder executionMode(String executionMode)
The mode for data import/export execution.
- Parameters:
executionMode- The mode for data import/export execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExecutionMode,ExecutionMode
-
executionMode
ExecutionConfiguration.Builder executionMode(ExecutionMode executionMode)
The mode for data import/export execution.
- Parameters:
executionMode- The mode for data import/export execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExecutionMode,ExecutionMode
-
onDemandConfiguration
ExecutionConfiguration.Builder onDemandConfiguration(OnDemandConfiguration onDemandConfiguration)
Sets the value of the OnDemandConfiguration property for this object.- Parameters:
onDemandConfiguration- The new value for the OnDemandConfiguration property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
onDemandConfiguration
default ExecutionConfiguration.Builder onDemandConfiguration(Consumer<OnDemandConfiguration.Builder> onDemandConfiguration)
Sets the value of the OnDemandConfiguration property for this object. This is a convenience method that creates an instance of theOnDemandConfiguration.Builderavoiding the need to create one manually viaOnDemandConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toonDemandConfiguration(OnDemandConfiguration).- Parameters:
onDemandConfiguration- a consumer that will call methods onOnDemandConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
onDemandConfiguration(OnDemandConfiguration)
-
scheduleConfiguration
ExecutionConfiguration.Builder scheduleConfiguration(ScheduleConfiguration scheduleConfiguration)
Sets the value of the ScheduleConfiguration property for this object.- Parameters:
scheduleConfiguration- The new value for the ScheduleConfiguration property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduleConfiguration
default ExecutionConfiguration.Builder scheduleConfiguration(Consumer<ScheduleConfiguration.Builder> scheduleConfiguration)
Sets the value of the ScheduleConfiguration property for this object. This is a convenience method that creates an instance of theScheduleConfiguration.Builderavoiding the need to create one manually viaScheduleConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toscheduleConfiguration(ScheduleConfiguration).- Parameters:
scheduleConfiguration- a consumer that will call methods onScheduleConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
scheduleConfiguration(ScheduleConfiguration)
-
-