@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class ConnectorDataTarget extends Object implements Serializable, Cloneable, StructuredPojo
Specifies a target generated with standard connection options.
Constructor and Description |
---|
ConnectorDataTarget() |
Modifier and Type | Method and Description |
---|---|
ConnectorDataTarget |
addDataEntry(String key,
String value)
Add a single Data entry
|
ConnectorDataTarget |
clearDataEntries()
Removes all the entries added into Data.
|
ConnectorDataTarget |
clone() |
boolean |
equals(Object obj) |
String |
getConnectionType()
The
connectionType , as provided to the underlying Glue library. |
Map<String,String> |
getData()
A map specifying connection options for the node.
|
List<String> |
getInputs()
The nodes that are inputs to the data target.
|
String |
getName()
The name of this target node.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setConnectionType(String connectionType)
The
connectionType , as provided to the underlying Glue library. |
void |
setData(Map<String,String> data)
A map specifying connection options for the node.
|
void |
setInputs(Collection<String> inputs)
The nodes that are inputs to the data target.
|
void |
setName(String name)
The name of this target node.
|
String |
toString()
Returns a string representation of this object.
|
ConnectorDataTarget |
withConnectionType(String connectionType)
The
connectionType , as provided to the underlying Glue library. |
ConnectorDataTarget |
withData(Map<String,String> data)
A map specifying connection options for the node.
|
ConnectorDataTarget |
withInputs(Collection<String> inputs)
The nodes that are inputs to the data target.
|
ConnectorDataTarget |
withInputs(String... inputs)
The nodes that are inputs to the data target.
|
ConnectorDataTarget |
withName(String name)
The name of this target node.
|
public void setName(String name)
The name of this target node.
name
- The name of this target node.public String getName()
The name of this target node.
public ConnectorDataTarget withName(String name)
The name of this target node.
name
- The name of this target node.public void setConnectionType(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
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
public String getConnectionType()
The connectionType
, as provided to the underlying Glue library. This node type supports the
following connection types:
opensearch
azuresql
azurecosmos
bigquery
saphana
teradata
vertica
connectionType
, as provided to the underlying Glue library. This node type supports the
following connection types:
opensearch
azuresql
azurecosmos
bigquery
saphana
teradata
vertica
public ConnectorDataTarget withConnectionType(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
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
public Map<String,String> getData()
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.
public void setData(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.
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.public ConnectorDataTarget withData(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.
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.public ConnectorDataTarget addDataEntry(String key, String value)
public ConnectorDataTarget clearDataEntries()
public List<String> getInputs()
The nodes that are inputs to the data target.
public void setInputs(Collection<String> inputs)
The nodes that are inputs to the data target.
inputs
- The nodes that are inputs to the data target.public ConnectorDataTarget withInputs(String... inputs)
The nodes that are inputs to the data target.
NOTE: This method appends the values to the existing list (if any). Use
setInputs(java.util.Collection)
or withInputs(java.util.Collection)
if you want to override the
existing values.
inputs
- The nodes that are inputs to the data target.public ConnectorDataTarget withInputs(Collection<String> inputs)
The nodes that are inputs to the data target.
inputs
- The nodes that are inputs to the data target.public String toString()
toString
in class Object
Object.toString()
public ConnectorDataTarget clone()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.