Interface Spigot.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<Spigot.Builder,
,Spigot> SdkBuilder<Spigot.Builder,
,Spigot> SdkPojo
- Enclosing class:
Spigot
@Mutable
@NotThreadSafe
public static interface Spigot.Builder
extends SdkPojo, CopyableBuilder<Spigot.Builder,Spigot>
-
Method Summary
Modifier and TypeMethodDescriptionThe data inputs identified by their node names.inputs
(Collection<String> inputs) The data inputs identified by their node names.The name of the transform node.A path in Amazon S3 where the transform will write a subset of records from the dataset to a JSON file in an Amazon S3 bucket.The probability (a decimal value with a maximum value of 1) of picking any given record.Specifies a number of records to write starting from the beginning of 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 Details
-
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
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
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.
-
path
A path in Amazon S3 where the transform will write a subset of records from the dataset to a JSON file in an Amazon S3 bucket.
- Parameters:
path
- A path in Amazon S3 where the transform will write a subset of records from the dataset to a JSON file in an Amazon S3 bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
topk
Specifies a number of records to write starting from the beginning of the dataset.
- Parameters:
topk
- Specifies a number of records to write starting from the beginning of the dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
prob
The probability (a decimal value with a maximum value of 1) of picking any given record. A value of 1 indicates that each row read from the dataset should be included in the sample output.
- Parameters:
prob
- The probability (a decimal value with a maximum value of 1) of picking any given record. A value of 1 indicates that each row read from the dataset should be included in the sample output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-