Interface NodeInputExecutionChainItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NodeInputExecutionChainItem.Builder,NodeInputExecutionChainItem>,SdkBuilder<NodeInputExecutionChainItem.Builder,NodeInputExecutionChainItem>,SdkPojo
- Enclosing class:
- NodeInputExecutionChainItem
@Mutable @NotThreadSafe public static interface NodeInputExecutionChainItem.Builder extends SdkPojo, CopyableBuilder<NodeInputExecutionChainItem.Builder,NodeInputExecutionChainItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NodeInputExecutionChainItem.Builderindex(Integer index)The index position of this item in the execution chain.NodeInputExecutionChainItem.BuildernodeName(String nodeName)The name of the node in the execution chain.NodeInputExecutionChainItem.Buildertype(String type)The type of execution chain item.NodeInputExecutionChainItem.Buildertype(FlowControlNodeType type)The type of execution chain item.-
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
-
nodeName
NodeInputExecutionChainItem.Builder nodeName(String nodeName)
The name of the node in the execution chain.
- Parameters:
nodeName- The name of the node in the execution chain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
index
NodeInputExecutionChainItem.Builder index(Integer index)
The index position of this item in the execution chain.
- Parameters:
index- The index position of this item in the execution chain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
NodeInputExecutionChainItem.Builder type(String type)
The type of execution chain item. Supported values are Iterator and Loop.
- Parameters:
type- The type of execution chain item. Supported values are Iterator and Loop.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowControlNodeType,FlowControlNodeType
-
type
NodeInputExecutionChainItem.Builder type(FlowControlNodeType type)
The type of execution chain item. Supported values are Iterator and Loop.
- Parameters:
type- The type of execution chain item. Supported values are Iterator and Loop.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowControlNodeType,FlowControlNodeType
-
-