/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.glue.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* Specifies a connector to an Apache Spark data source. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class SparkConnectorSource implements Serializable, Cloneable, StructuredPojo { /** *

* The name of the data source. *

*/ private String name; /** *

* The name of the connection that is associated with the connector. *

*/ private String connectionName; /** *

* The name of a connector that assists with accessing the data store in Glue Studio. *

*/ private String connectorName; /** *

* The type of connection, such as marketplace.spark or custom.spark, designating a connection to an Apache Spark * data store. *

*/ private String connectionType; /** *

* Additional connection options for the connector. *

*/ private java.util.Map additionalOptions; /** *

* Specifies data schema for the custom spark source. *

*/ private java.util.List outputSchemas; /** *

* The name of the data source. *

* * @param name * The name of the data source. */ public void setName(String name) { this.name = name; } /** *

* The name of the data source. *

* * @return The name of the data source. */ public String getName() { return this.name; } /** *

* The name of the data source. *

* * @param name * The name of the data source. * @return Returns a reference to this object so that method calls can be chained together. */ public SparkConnectorSource withName(String name) { setName(name); return this; } /** *

* The name of the connection that is associated with the connector. *

* * @param connectionName * The name of the connection that is associated with the connector. */ public void setConnectionName(String connectionName) { this.connectionName = connectionName; } /** *

* The name of the connection that is associated with the connector. *

* * @return The name of the connection that is associated with the connector. */ public String getConnectionName() { return this.connectionName; } /** *

* The name of the connection that is associated with the connector. *

* * @param connectionName * The name of the connection that is associated with the connector. * @return Returns a reference to this object so that method calls can be chained together. */ public SparkConnectorSource withConnectionName(String connectionName) { setConnectionName(connectionName); return this; } /** *

* The name of a connector that assists with accessing the data store in Glue Studio. *

* * @param connectorName * The name of a connector that assists with accessing the data store in Glue Studio. */ public void setConnectorName(String connectorName) { this.connectorName = connectorName; } /** *

* The name of a connector that assists with accessing the data store in Glue Studio. *

* * @return The name of a connector that assists with accessing the data store in Glue Studio. */ public String getConnectorName() { return this.connectorName; } /** *

* The name of a connector that assists with accessing the data store in Glue Studio. *

* * @param connectorName * The name of a connector that assists with accessing the data store in Glue Studio. * @return Returns a reference to this object so that method calls can be chained together. */ public SparkConnectorSource withConnectorName(String connectorName) { setConnectorName(connectorName); return this; } /** *

* The type of connection, such as marketplace.spark or custom.spark, designating a connection to an Apache Spark * data store. *

* * @param connectionType * The type of connection, such as marketplace.spark or custom.spark, designating a connection to an Apache * Spark data store. */ public void setConnectionType(String connectionType) { this.connectionType = connectionType; } /** *

* The type of connection, such as marketplace.spark or custom.spark, designating a connection to an Apache Spark * data store. *

* * @return The type of connection, such as marketplace.spark or custom.spark, designating a connection to an Apache * Spark data store. */ public String getConnectionType() { return this.connectionType; } /** *

* The type of connection, such as marketplace.spark or custom.spark, designating a connection to an Apache Spark * data store. *

* * @param connectionType * The type of connection, such as marketplace.spark or custom.spark, designating a connection to an Apache * Spark data store. * @return Returns a reference to this object so that method calls can be chained together. */ public SparkConnectorSource withConnectionType(String connectionType) { setConnectionType(connectionType); return this; } /** *

* Additional connection options for the connector. *

* * @return Additional connection options for the connector. */ public java.util.Map getAdditionalOptions() { return additionalOptions; } /** *

* Additional connection options for the connector. *

* * @param additionalOptions * Additional connection options for the connector. */ public void setAdditionalOptions(java.util.Map additionalOptions) { this.additionalOptions = additionalOptions; } /** *

* Additional connection options for the connector. *

* * @param additionalOptions * Additional connection options for the connector. * @return Returns a reference to this object so that method calls can be chained together. */ public SparkConnectorSource withAdditionalOptions(java.util.Map additionalOptions) { setAdditionalOptions(additionalOptions); return this; } /** * Add a single AdditionalOptions entry * * @see SparkConnectorSource#withAdditionalOptions * @returns a reference to this object so that method calls can be chained together. */ public SparkConnectorSource addAdditionalOptionsEntry(String key, String value) { if (null == this.additionalOptions) { this.additionalOptions = new java.util.HashMap(); } if (this.additionalOptions.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.additionalOptions.put(key, value); return this; } /** * Removes all the entries added into AdditionalOptions. * * @return Returns a reference to this object so that method calls can be chained together. */ public SparkConnectorSource clearAdditionalOptionsEntries() { this.additionalOptions = null; return this; } /** *

* Specifies data schema for the custom spark source. *

* * @return Specifies data schema for the custom spark source. */ public java.util.List getOutputSchemas() { return outputSchemas; } /** *

* Specifies data schema for the custom spark source. *

* * @param outputSchemas * Specifies data schema for the custom spark source. */ public void setOutputSchemas(java.util.Collection outputSchemas) { if (outputSchemas == null) { this.outputSchemas = null; return; } this.outputSchemas = new java.util.ArrayList(outputSchemas); } /** *

* Specifies data schema for the custom spark source. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setOutputSchemas(java.util.Collection)} or {@link #withOutputSchemas(java.util.Collection)} if you want * to override the existing values. *

* * @param outputSchemas * Specifies data schema for the custom spark source. * @return Returns a reference to this object so that method calls can be chained together. */ public SparkConnectorSource withOutputSchemas(GlueSchema... outputSchemas) { if (this.outputSchemas == null) { setOutputSchemas(new java.util.ArrayList(outputSchemas.length)); } for (GlueSchema ele : outputSchemas) { this.outputSchemas.add(ele); } return this; } /** *

* Specifies data schema for the custom spark source. *

* * @param outputSchemas * Specifies data schema for the custom spark source. * @return Returns a reference to this object so that method calls can be chained together. */ public SparkConnectorSource withOutputSchemas(java.util.Collection outputSchemas) { setOutputSchemas(outputSchemas); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getConnectionName() != null) sb.append("ConnectionName: ").append(getConnectionName()).append(","); if (getConnectorName() != null) sb.append("ConnectorName: ").append(getConnectorName()).append(","); if (getConnectionType() != null) sb.append("ConnectionType: ").append(getConnectionType()).append(","); if (getAdditionalOptions() != null) sb.append("AdditionalOptions: ").append(getAdditionalOptions()).append(","); if (getOutputSchemas() != null) sb.append("OutputSchemas: ").append(getOutputSchemas()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SparkConnectorSource == false) return false; SparkConnectorSource other = (SparkConnectorSource) obj; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getConnectionName() == null ^ this.getConnectionName() == null) return false; if (other.getConnectionName() != null && other.getConnectionName().equals(this.getConnectionName()) == false) return false; if (other.getConnectorName() == null ^ this.getConnectorName() == null) return false; if (other.getConnectorName() != null && other.getConnectorName().equals(this.getConnectorName()) == false) return false; if (other.getConnectionType() == null ^ this.getConnectionType() == null) return false; if (other.getConnectionType() != null && other.getConnectionType().equals(this.getConnectionType()) == false) return false; if (other.getAdditionalOptions() == null ^ this.getAdditionalOptions() == null) return false; if (other.getAdditionalOptions() != null && other.getAdditionalOptions().equals(this.getAdditionalOptions()) == false) return false; if (other.getOutputSchemas() == null ^ this.getOutputSchemas() == null) return false; if (other.getOutputSchemas() != null && other.getOutputSchemas().equals(this.getOutputSchemas()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getConnectionName() == null) ? 0 : getConnectionName().hashCode()); hashCode = prime * hashCode + ((getConnectorName() == null) ? 0 : getConnectorName().hashCode()); hashCode = prime * hashCode + ((getConnectionType() == null) ? 0 : getConnectionType().hashCode()); hashCode = prime * hashCode + ((getAdditionalOptions() == null) ? 0 : getAdditionalOptions().hashCode()); hashCode = prime * hashCode + ((getOutputSchemas() == null) ? 0 : getOutputSchemas().hashCode()); return hashCode; } @Override public SparkConnectorSource clone() { try { return (SparkConnectorSource) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.glue.model.transform.SparkConnectorSourceMarshaller.getInstance().marshall(this, protocolMarshaller); } }