Interface SelectFromCollection.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SelectFromCollection.Builder,SelectFromCollection>,SdkBuilder<SelectFromCollection.Builder,SelectFromCollection>,SdkPojo
- Enclosing class:
- SelectFromCollection
public static interface SelectFromCollection.Builder extends SdkPojo, CopyableBuilder<SelectFromCollection.Builder,SelectFromCollection>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SelectFromCollection.Builderindex(Integer index)The index for the DynamicFrame to be selected.SelectFromCollection.Builderinputs(String... inputs)The data inputs identified by their node names.SelectFromCollection.Builderinputs(Collection<String> inputs)The data inputs identified by their node names.SelectFromCollection.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
SelectFromCollection.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
SelectFromCollection.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
SelectFromCollection.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.
-
index
SelectFromCollection.Builder index(Integer index)
The index for the DynamicFrame to be selected.
- Parameters:
index- The index for the DynamicFrame to be selected.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-