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