Interface DropNullFields.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DropNullFields.Builder,DropNullFields>,SdkBuilder<DropNullFields.Builder,DropNullFields>,SdkPojo
- Enclosing class:
- DropNullFields
public static interface DropNullFields.Builder extends SdkPojo, CopyableBuilder<DropNullFields.Builder,DropNullFields>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DropNullFields.Builderinputs(String... inputs)The data inputs identified by their node names.DropNullFields.Builderinputs(Collection<String> inputs)The data inputs identified by their node names.DropNullFields.Buildername(String name)The name of the transform node.default DropNullFields.BuildernullCheckBoxList(Consumer<NullCheckBoxList.Builder> nullCheckBoxList)A structure that represents whether certain values are recognized as null values for removal.DropNullFields.BuildernullCheckBoxList(NullCheckBoxList nullCheckBoxList)A structure that represents whether certain values are recognized as null values for removal.DropNullFields.BuildernullTextList(Collection<NullValueField> nullTextList)A structure that specifies a list of NullValueField structures that represent a custom null value such as zero or other value being used as a null placeholder unique to the dataset.DropNullFields.BuildernullTextList(Consumer<NullValueField.Builder>... nullTextList)A structure that specifies a list of NullValueField structures that represent a custom null value such as zero or other value being used as a null placeholder unique to the dataset.DropNullFields.BuildernullTextList(NullValueField... nullTextList)A structure that specifies a list of NullValueField structures that represent a custom null value such as zero or other value being used as a null placeholder unique to the dataset.-
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
DropNullFields.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
DropNullFields.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
DropNullFields.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.
-
nullCheckBoxList
DropNullFields.Builder nullCheckBoxList(NullCheckBoxList nullCheckBoxList)
A structure that represents whether certain values are recognized as null values for removal.
- Parameters:
nullCheckBoxList- A structure that represents whether certain values are recognized as null values for removal.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nullCheckBoxList
default DropNullFields.Builder nullCheckBoxList(Consumer<NullCheckBoxList.Builder> nullCheckBoxList)
A structure that represents whether certain values are recognized as null values for removal.
This is a convenience method that creates an instance of theNullCheckBoxList.Builderavoiding the need to create one manually viaNullCheckBoxList.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tonullCheckBoxList(NullCheckBoxList).- Parameters:
nullCheckBoxList- a consumer that will call methods onNullCheckBoxList.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
nullCheckBoxList(NullCheckBoxList)
-
nullTextList
DropNullFields.Builder nullTextList(Collection<NullValueField> nullTextList)
A structure that specifies a list of NullValueField structures that represent a custom null value such as zero or other value being used as a null placeholder unique to the dataset.
The
DropNullFieldstransform removes custom null values only if both the value of the null placeholder and the datatype match the data.- Parameters:
nullTextList- A structure that specifies a list of NullValueField structures that represent a custom null value such as zero or other value being used as a null placeholder unique to the dataset.The
DropNullFieldstransform removes custom null values only if both the value of the null placeholder and the datatype match the data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nullTextList
DropNullFields.Builder nullTextList(NullValueField... nullTextList)
A structure that specifies a list of NullValueField structures that represent a custom null value such as zero or other value being used as a null placeholder unique to the dataset.
The
DropNullFieldstransform removes custom null values only if both the value of the null placeholder and the datatype match the data.- Parameters:
nullTextList- A structure that specifies a list of NullValueField structures that represent a custom null value such as zero or other value being used as a null placeholder unique to the dataset.The
DropNullFieldstransform removes custom null values only if both the value of the null placeholder and the datatype match the data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nullTextList
DropNullFields.Builder nullTextList(Consumer<NullValueField.Builder>... nullTextList)
A structure that specifies a list of NullValueField structures that represent a custom null value such as zero or other value being used as a null placeholder unique to the dataset.
The
This is a convenience method that creates an instance of theDropNullFieldstransform removes custom null values only if both the value of the null placeholder and the datatype match the data.NullValueField.Builderavoiding the need to create one manually viaNullValueField.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#nullTextList(List.) - Parameters:
nullTextList- a consumer that will call methods onNullValueField.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#nullTextList(java.util.Collection)
-
-