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