Interface SnowflakeTarget.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SnowflakeTarget.Builder,SnowflakeTarget>,SdkBuilder<SnowflakeTarget.Builder,SnowflakeTarget>,SdkPojo
- Enclosing class:
- SnowflakeTarget
public static interface SnowflakeTarget.Builder extends SdkPojo, CopyableBuilder<SnowflakeTarget.Builder,SnowflakeTarget>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default SnowflakeTarget.Builderdata(Consumer<SnowflakeNodeData.Builder> data)Specifies the data of the Snowflake target node.SnowflakeTarget.Builderdata(SnowflakeNodeData data)Specifies the data of the Snowflake target node.SnowflakeTarget.Builderinputs(String... inputs)The nodes that are inputs to the data target.SnowflakeTarget.Builderinputs(Collection<String> inputs)The nodes that are inputs to the data target.SnowflakeTarget.Buildername(String name)The name of the Snowflake target.-
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
SnowflakeTarget.Builder name(String name)
The name of the Snowflake target.
- Parameters:
name- The name of the Snowflake target.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
data
SnowflakeTarget.Builder data(SnowflakeNodeData data)
Specifies the data of the Snowflake target node.
- Parameters:
data- Specifies the data of the Snowflake target node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
data
default SnowflakeTarget.Builder data(Consumer<SnowflakeNodeData.Builder> data)
Specifies the data of the Snowflake target node.
This is a convenience method that creates an instance of theSnowflakeNodeData.Builderavoiding the need to create one manually viaSnowflakeNodeData.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todata(SnowflakeNodeData).- Parameters:
data- a consumer that will call methods onSnowflakeNodeData.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
data(SnowflakeNodeData)
-
inputs
SnowflakeTarget.Builder inputs(Collection<String> inputs)
The nodes that are inputs to the data target.
- Parameters:
inputs- The nodes that are inputs to the data target.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputs
SnowflakeTarget.Builder inputs(String... inputs)
The nodes that are inputs to the data target.
- Parameters:
inputs- The nodes that are inputs to the data target.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-