* The configuration that is applied to the connectors used in the flow. *
*/ private java.util.Map* Information about the connectors supported in Amazon AppFlow. *
*/ private java.util.List* The pagination token for the next page of data. *
*/ private String nextToken; /** ** The configuration that is applied to the connectors used in the flow. *
* * @return The configuration that is applied to the connectors used in the flow. */ public java.util.Map* The configuration that is applied to the connectors used in the flow. *
* * @param connectorConfigurations * The configuration that is applied to the connectors used in the flow. */ public void setConnectorConfigurations(java.util.Map* The configuration that is applied to the connectors used in the flow. *
* * @param connectorConfigurations * The configuration that is applied to the connectors used in the flow. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeConnectorsResult withConnectorConfigurations(java.util.Map* Information about the connectors supported in Amazon AppFlow. *
* * @return Information about the connectors supported in Amazon AppFlow. */ public java.util.List* Information about the connectors supported in Amazon AppFlow. *
* * @param connectors * Information about the connectors supported in Amazon AppFlow. */ public void setConnectors(java.util.Collection* Information about the connectors supported in Amazon AppFlow. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setConnectors(java.util.Collection)} or {@link #withConnectors(java.util.Collection)} if you want to * override the existing values. *
* * @param connectors * Information about the connectors supported in Amazon AppFlow. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeConnectorsResult withConnectors(ConnectorDetail... connectors) { if (this.connectors == null) { setConnectors(new java.util.ArrayList* Information about the connectors supported in Amazon AppFlow. *
* * @param connectors * Information about the connectors supported in Amazon AppFlow. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeConnectorsResult withConnectors(java.util.Collection* The pagination token for the next page of data. *
* * @param nextToken * The pagination token for the next page of data. */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** ** The pagination token for the next page of data. *
* * @return The pagination token for the next page of data. */ public String getNextToken() { return this.nextToken; } /** ** The pagination token for the next page of data. *
* * @param nextToken * The pagination token for the next page of data. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeConnectorsResult withNextToken(String nextToken) { setNextToken(nextToken); 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 (getConnectorConfigurations() != null) sb.append("ConnectorConfigurations: ").append(getConnectorConfigurations()).append(","); if (getConnectors() != null) sb.append("Connectors: ").append(getConnectors()).append(","); if (getNextToken() != null) sb.append("NextToken: ").append(getNextToken()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeConnectorsResult == false) return false; DescribeConnectorsResult other = (DescribeConnectorsResult) obj; if (other.getConnectorConfigurations() == null ^ this.getConnectorConfigurations() == null) return false; if (other.getConnectorConfigurations() != null && other.getConnectorConfigurations().equals(this.getConnectorConfigurations()) == false) return false; if (other.getConnectors() == null ^ this.getConnectors() == null) return false; if (other.getConnectors() != null && other.getConnectors().equals(this.getConnectors()) == false) return false; if (other.getNextToken() == null ^ this.getNextToken() == null) return false; if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getConnectorConfigurations() == null) ? 0 : getConnectorConfigurations().hashCode()); hashCode = prime * hashCode + ((getConnectors() == null) ? 0 : getConnectors().hashCode()); hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); return hashCode; } @Override public DescribeConnectorsResult clone() { try { return (DescribeConnectorsResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }