Interface Merge.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Merge.Builder,Merge>,SdkBuilder<Merge.Builder,Merge>,SdkPojo
- Enclosing class:
- Merge
public static interface Merge.Builder extends SdkPojo, CopyableBuilder<Merge.Builder,Merge>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Merge.Builderinputs(String... inputs)The data inputs identified by their node names.Merge.Builderinputs(Collection<String> inputs)The data inputs identified by their node names.Merge.Buildername(String name)The name of the transform node.Merge.BuilderprimaryKeys(Collection<? extends Collection<String>> primaryKeys)The list of primary key fields to match records from the source and staging dynamic frames.Merge.BuilderprimaryKeys(Collection<String>... primaryKeys)The list of primary key fields to match records from the source and staging dynamic frames.Merge.Buildersource(String source)The sourceDynamicFramethat will be merged with a stagingDynamicFrame.-
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
Merge.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
Merge.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
Merge.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.
-
source
Merge.Builder source(String source)
The source
DynamicFramethat will be merged with a stagingDynamicFrame.- Parameters:
source- The sourceDynamicFramethat will be merged with a stagingDynamicFrame.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
primaryKeys
Merge.Builder primaryKeys(Collection<? extends Collection<String>> primaryKeys)
The list of primary key fields to match records from the source and staging dynamic frames.
- Parameters:
primaryKeys- The list of primary key fields to match records from the source and staging dynamic frames.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
primaryKeys
Merge.Builder primaryKeys(Collection<String>... primaryKeys)
The list of primary key fields to match records from the source and staging dynamic frames.
- Parameters:
primaryKeys- The list of primary key fields to match records from the source and staging dynamic frames.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-