Interface Union.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Union.Builder,Union>,SdkBuilder<Union.Builder,Union>,SdkPojo
- Enclosing class:
- Union
public static interface Union.Builder extends SdkPojo, CopyableBuilder<Union.Builder,Union>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Union.Builderinputs(String... inputs)The node ID inputs to the transform.Union.Builderinputs(Collection<String> inputs)The node ID inputs to the transform.Union.Buildername(String name)The name of the transform node.Union.BuilderunionType(String unionType)Indicates the type of Union transform.Union.BuilderunionType(UnionType unionType)Indicates the type of Union transform.-
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
Union.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
Union.Builder inputs(Collection<String> inputs)
The node ID inputs to the transform.
- Parameters:
inputs- The node ID inputs to the transform.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputs
Union.Builder inputs(String... inputs)
The node ID inputs to the transform.
- Parameters:
inputs- The node ID inputs to the transform.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unionType
Union.Builder unionType(String unionType)
Indicates the type of Union transform.
Specify
ALLto join all rows from data sources to the resulting DynamicFrame. The resulting union does not remove duplicate rows.Specify
DISTINCTto remove duplicate rows in the resulting DynamicFrame.- Parameters:
unionType- Indicates the type of Union transform.Specify
ALLto join all rows from data sources to the resulting DynamicFrame. The resulting union does not remove duplicate rows.Specify
DISTINCTto remove duplicate rows in the resulting DynamicFrame.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
UnionType,UnionType
-
unionType
Union.Builder unionType(UnionType unionType)
Indicates the type of Union transform.
Specify
ALLto join all rows from data sources to the resulting DynamicFrame. The resulting union does not remove duplicate rows.Specify
DISTINCTto remove duplicate rows in the resulting DynamicFrame.- Parameters:
unionType- Indicates the type of Union transform.Specify
ALLto join all rows from data sources to the resulting DynamicFrame. The resulting union does not remove duplicate rows.Specify
DISTINCTto remove duplicate rows in the resulting DynamicFrame.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
UnionType,UnionType
-
-