Interface Step.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<Step.Builder,
,Step> SdkBuilder<Step.Builder,
,Step> SdkPojo
- Enclosing class:
Step
@Mutable
@NotThreadSafe
public static interface Step.Builder
extends SdkPojo, CopyableBuilder<Step.Builder,Step>
-
Method Summary
Modifier and TypeMethodDescriptiondescription
(String description) The description of a step in a workflow.default Step.Builder
executionBlockConfiguration
(Consumer<ExecutionBlockConfiguration.Builder> executionBlockConfiguration) The configuration for an execution block in a workflow.executionBlockConfiguration
(ExecutionBlockConfiguration executionBlockConfiguration) The configuration for an execution block in a workflow.executionBlockType
(String executionBlockType) The type of an execution block in a workflow.executionBlockType
(ExecutionBlockType executionBlockType) The type of an execution block in a workflow.The name of a step in a workflow.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
-
name
The name of a step in a workflow.
- Parameters:
name
- The name of a step in a workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
The description of a step in a workflow.
- Parameters:
description
- The description of a step in a workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executionBlockConfiguration
The configuration for an execution block in a workflow.
- Parameters:
executionBlockConfiguration
- The configuration for an execution block in a workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executionBlockConfiguration
default Step.Builder executionBlockConfiguration(Consumer<ExecutionBlockConfiguration.Builder> executionBlockConfiguration) The configuration for an execution block in a workflow.
This is a convenience method that creates an instance of theExecutionBlockConfiguration.Builder
avoiding the need to create one manually viaExecutionBlockConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toexecutionBlockConfiguration(ExecutionBlockConfiguration)
.- Parameters:
executionBlockConfiguration
- a consumer that will call methods onExecutionBlockConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
executionBlockType
The type of an execution block in a workflow.
- Parameters:
executionBlockType
- The type of an execution block in a workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
executionBlockType
The type of an execution block in a workflow.
- Parameters:
executionBlockType
- The type of an execution block in a workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-