Interface ConnectorDataTarget.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectorDataTarget.Builder,ConnectorDataTarget>,SdkBuilder<ConnectorDataTarget.Builder,ConnectorDataTarget>,SdkPojo
- Enclosing class:
- ConnectorDataTarget
public static interface ConnectorDataTarget.Builder extends SdkPojo, CopyableBuilder<ConnectorDataTarget.Builder,ConnectorDataTarget>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectorDataTarget.BuilderconnectionType(String connectionType)TheconnectionType, as provided to the underlying Glue library.ConnectorDataTarget.Builderdata(Map<String,String> data)A map specifying connection options for the node.ConnectorDataTarget.Builderinputs(String... inputs)The nodes that are inputs to the data target.ConnectorDataTarget.Builderinputs(Collection<String> inputs)The nodes that are inputs to the data target.ConnectorDataTarget.Buildername(String name)The name of this target 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
ConnectorDataTarget.Builder name(String name)
The name of this target node.
- Parameters:
name- The name of this target node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionType
ConnectorDataTarget.Builder connectionType(String connectionType)
The
connectionType, as provided to the underlying Glue library. This node type supports the following connection types:-
opensearch -
azuresql -
azurecosmos -
bigquery -
saphana -
teradata -
vertica
- Parameters:
connectionType- TheconnectionType, as provided to the underlying Glue library. This node type supports the following connection types:-
opensearch -
azuresql -
azurecosmos -
bigquery -
saphana -
teradata -
vertica
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
data
ConnectorDataTarget.Builder data(Map<String,String> data)
A map specifying connection options for the node. You can find standard connection options for the corresponding connection type in the Connection parameters section of the Glue documentation.
- Parameters:
data- A map specifying connection options for the node. You can find standard connection options for the corresponding connection type in the Connection parameters section of the Glue documentation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputs
ConnectorDataTarget.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
ConnectorDataTarget.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.
-
-