Interface FlowTraceNodeInputExecutionChainItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlowTraceNodeInputExecutionChainItem.Builder,FlowTraceNodeInputExecutionChainItem>,SdkBuilder<FlowTraceNodeInputExecutionChainItem.Builder,FlowTraceNodeInputExecutionChainItem>,SdkPojo
- Enclosing class:
- FlowTraceNodeInputExecutionChainItem
@Mutable @NotThreadSafe public static interface FlowTraceNodeInputExecutionChainItem.Builder extends SdkPojo, CopyableBuilder<FlowTraceNodeInputExecutionChainItem.Builder,FlowTraceNodeInputExecutionChainItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlowTraceNodeInputExecutionChainItem.Builderindex(Integer index)The index position of this item in the execution chain.FlowTraceNodeInputExecutionChainItem.BuildernodeName(String nodeName)The name of the node in the execution chain.FlowTraceNodeInputExecutionChainItem.Buildertype(String type)The type of execution chain item.FlowTraceNodeInputExecutionChainItem.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
FlowTraceNodeInputExecutionChainItem.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
FlowTraceNodeInputExecutionChainItem.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
FlowTraceNodeInputExecutionChainItem.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
FlowTraceNodeInputExecutionChainItem.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
-
-