Interface NodeInputSource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NodeInputSource.Builder,NodeInputSource>,SdkBuilder<NodeInputSource.Builder,NodeInputSource>,SdkPojo
- Enclosing class:
- NodeInputSource
@Mutable @NotThreadSafe public static interface NodeInputSource.Builder extends SdkPojo, CopyableBuilder<NodeInputSource.Builder,NodeInputSource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NodeInputSource.Builderexpression(String expression)The expression used to extract data from the source.NodeInputSource.BuildernodeName(String nodeName)The name of the source node that provides the input data.NodeInputSource.BuilderoutputFieldName(String outputFieldName)The name of the output field from the source node.-
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
NodeInputSource.Builder nodeName(String nodeName)
The name of the source node that provides the input data.
- Parameters:
nodeName- The name of the source node that provides the input data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputFieldName
NodeInputSource.Builder outputFieldName(String outputFieldName)
The name of the output field from the source node.
- Parameters:
outputFieldName- The name of the output field from the source node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expression
NodeInputSource.Builder expression(String expression)
The expression used to extract data from the source.
- Parameters:
expression- The expression used to extract data from the source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-