Interface FillMissingValues.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FillMissingValues.Builder,FillMissingValues>,SdkBuilder<FillMissingValues.Builder,FillMissingValues>,SdkPojo
- Enclosing class:
- FillMissingValues
public static interface FillMissingValues.Builder extends SdkPojo, CopyableBuilder<FillMissingValues.Builder,FillMissingValues>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FillMissingValues.BuilderfilledPath(String filledPath)A JSON path to a variable in the data structure for the dataset that is filled.FillMissingValues.BuilderimputedPath(String imputedPath)A JSON path to a variable in the data structure for the dataset that is imputed.FillMissingValues.Builderinputs(String... inputs)The data inputs identified by their node names.FillMissingValues.Builderinputs(Collection<String> inputs)The data inputs identified by their node names.FillMissingValues.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, sdkFields
-
-
-
-
Method Detail
-
name
FillMissingValues.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
FillMissingValues.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
FillMissingValues.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.
-
imputedPath
FillMissingValues.Builder imputedPath(String imputedPath)
A JSON path to a variable in the data structure for the dataset that is imputed.
- Parameters:
imputedPath- A JSON path to a variable in the data structure for the dataset that is imputed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filledPath
FillMissingValues.Builder filledPath(String filledPath)
A JSON path to a variable in the data structure for the dataset that is filled.
- Parameters:
filledPath- A JSON path to a variable in the data structure for the dataset that is filled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-