Interface RenameField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RenameField.Builder,RenameField>,SdkBuilder<RenameField.Builder,RenameField>,SdkPojo
- Enclosing class:
- RenameField
public static interface RenameField.Builder extends SdkPojo, CopyableBuilder<RenameField.Builder,RenameField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RenameField.Builderinputs(String... inputs)The data inputs identified by their node names.RenameField.Builderinputs(Collection<String> inputs)The data inputs identified by their node names.RenameField.Buildername(String name)The name of the transform node.RenameField.BuildersourcePath(String... sourcePath)A JSON path to a variable in the data structure for the source data.RenameField.BuildersourcePath(Collection<String> sourcePath)A JSON path to a variable in the data structure for the source data.RenameField.BuildertargetPath(String... targetPath)A JSON path to a variable in the data structure for the target data.RenameField.BuildertargetPath(Collection<String> targetPath)A JSON path to a variable in the data structure for the target data.-
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, sdkFields
-
-
-
-
Method Detail
-
name
RenameField.Builder name(String name)
The name of the transform node.
- Parameters:
name- The name of the transform node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputs
RenameField.Builder inputs(Collection<String> inputs)
The data inputs identified by their node names.
- Parameters:
inputs- The data inputs identified by their node names.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputs
RenameField.Builder inputs(String... inputs)
The data inputs identified by their node names.
- Parameters:
inputs- The data inputs identified by their node names.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourcePath
RenameField.Builder sourcePath(Collection<String> sourcePath)
A JSON path to a variable in the data structure for the source data.
- Parameters:
sourcePath- A JSON path to a variable in the data structure for the source data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourcePath
RenameField.Builder sourcePath(String... sourcePath)
A JSON path to a variable in the data structure for the source data.
- Parameters:
sourcePath- A JSON path to a variable in the data structure for the source data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetPath
RenameField.Builder targetPath(Collection<String> targetPath)
A JSON path to a variable in the data structure for the target data.
- Parameters:
targetPath- A JSON path to a variable in the data structure for the target data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetPath
RenameField.Builder targetPath(String... targetPath)
A JSON path to a variable in the data structure for the target data.
- Parameters:
targetPath- A JSON path to a variable in the data structure for the target data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-