Interface ExecutionInputs.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ExecutionInputs.Builder,ExecutionInputs>
,SdkBuilder<ExecutionInputs.Builder,ExecutionInputs>
,SdkPojo
- Enclosing class:
- ExecutionInputs
public static interface ExecutionInputs.Builder extends SdkPojo, CopyableBuilder<ExecutionInputs.Builder,ExecutionInputs>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ExecutionInputs.Builder
automation(Consumer<AutomationExecutionInputs.Builder> automation)
Information about the optional inputs that can be specified for an automation execution preview.ExecutionInputs.Builder
automation(AutomationExecutionInputs automation)
Information about the optional inputs that can be specified for an automation execution preview.-
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
-
automation
ExecutionInputs.Builder automation(AutomationExecutionInputs automation)
Information about the optional inputs that can be specified for an automation execution preview.
- Parameters:
automation
- Information about the optional inputs that can be specified for an automation execution preview.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
automation
default ExecutionInputs.Builder automation(Consumer<AutomationExecutionInputs.Builder> automation)
Information about the optional inputs that can be specified for an automation execution preview.
This is a convenience method that creates an instance of theAutomationExecutionInputs.Builder
avoiding the need to create one manually viaAutomationExecutionInputs.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toautomation(AutomationExecutionInputs)
.- Parameters:
automation
- a consumer that will call methods onAutomationExecutionInputs.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
automation(AutomationExecutionInputs)
-
-