Interface StepAction.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<StepAction.Builder,
,StepAction> SdkBuilder<StepAction.Builder,
,StepAction> SdkPojo
- Enclosing class:
StepAction
@Mutable
@NotThreadSafe
public static interface StepAction.Builder
extends SdkPojo, CopyableBuilder<StepAction.Builder,StepAction>
-
Method Summary
Modifier and TypeMethodDescriptiondefault StepAction.Builder
compareAction
(Consumer<CompareAction.Builder> compareAction) The compare action of the step action.compareAction
(CompareAction compareAction) The compare action of the step action.default StepAction.Builder
mainframeAction
(Consumer<MainframeAction.Builder> mainframeAction) The mainframe action of the step action.mainframeAction
(MainframeAction mainframeAction) The mainframe action of the step action.default StepAction.Builder
resourceAction
(Consumer<ResourceAction.Builder> resourceAction) The resource action of the step action.resourceAction
(ResourceAction resourceAction) The resource action of the step 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 Details
-
resourceAction
The resource action of the step action.
- Parameters:
resourceAction
- The resource action of the step action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceAction
The resource action of the step action.
This is a convenience method that creates an instance of theResourceAction.Builder
avoiding the need to create one manually viaResourceAction.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toresourceAction(ResourceAction)
.- Parameters:
resourceAction
- a consumer that will call methods onResourceAction.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
mainframeAction
The mainframe action of the step action.
- Parameters:
mainframeAction
- The mainframe action of the step action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mainframeAction
The mainframe action of the step action.
This is a convenience method that creates an instance of theMainframeAction.Builder
avoiding the need to create one manually viaMainframeAction.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tomainframeAction(MainframeAction)
.- Parameters:
mainframeAction
- a consumer that will call methods onMainframeAction.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
compareAction
The compare action of the step action.
- Parameters:
compareAction
- The compare action of the step action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
compareAction
The compare action of the step action.
This is a convenience method that creates an instance of theCompareAction.Builder
avoiding the need to create one manually viaCompareAction.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tocompareAction(CompareAction)
.- Parameters:
compareAction
- a consumer that will call methods onCompareAction.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-