Interface StepAction.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StepAction.Builder,StepAction>,SdkBuilder<StepAction.Builder,StepAction>,SdkPojo
- Enclosing class:
- StepAction
public static interface StepAction.Builder extends SdkPojo, CopyableBuilder<StepAction.Builder,StepAction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default StepAction.BuildercompareAction(Consumer<CompareAction.Builder> compareAction)The compare action of the step action.StepAction.BuildercompareAction(CompareAction compareAction)The compare action of the step action.default StepAction.BuildermainframeAction(Consumer<MainframeAction.Builder> mainframeAction)The mainframe action of the step action.StepAction.BuildermainframeAction(MainframeAction mainframeAction)The mainframe action of the step action.default StepAction.BuilderresourceAction(Consumer<ResourceAction.Builder> resourceAction)The resource action of the step action.StepAction.BuilderresourceAction(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 Detail
-
resourceAction
StepAction.Builder resourceAction(ResourceAction 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
default StepAction.Builder resourceAction(Consumer<ResourceAction.Builder> resourceAction)
The resource action of the step action.
This is a convenience method that creates an instance of theResourceAction.Builderavoiding the need to create one manually viaResourceAction.builder().When the
Consumercompletes,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:
resourceAction(ResourceAction)
-
mainframeAction
StepAction.Builder mainframeAction(MainframeAction 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
default StepAction.Builder mainframeAction(Consumer<MainframeAction.Builder> mainframeAction)
The mainframe action of the step action.
This is a convenience method that creates an instance of theMainframeAction.Builderavoiding the need to create one manually viaMainframeAction.builder().When the
Consumercompletes,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:
mainframeAction(MainframeAction)
-
compareAction
StepAction.Builder compareAction(CompareAction 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
default StepAction.Builder compareAction(Consumer<CompareAction.Builder> compareAction)
The compare action of the step action.
This is a convenience method that creates an instance of theCompareAction.Builderavoiding the need to create one manually viaCompareAction.builder().When the
Consumercompletes,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:
compareAction(CompareAction)
-
-