/* * 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.appflow.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* The connector-specific profile properties required when using Salesforce Pardot. *
* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class PardotConnectorProfileProperties implements Serializable, Cloneable, StructuredPojo { /** ** The location of the Salesforce Pardot resource. *
*/ private String instanceUrl; /** ** Indicates whether the connector profile applies to a sandbox or production environment. *
*/ private Boolean isSandboxEnvironment; /** ** The business unit id of Salesforce Pardot instance. *
*/ private String businessUnitId; /** ** The location of the Salesforce Pardot resource. *
* * @param instanceUrl * The location of the Salesforce Pardot resource. */ public void setInstanceUrl(String instanceUrl) { this.instanceUrl = instanceUrl; } /** ** The location of the Salesforce Pardot resource. *
* * @return The location of the Salesforce Pardot resource. */ public String getInstanceUrl() { return this.instanceUrl; } /** ** The location of the Salesforce Pardot resource. *
* * @param instanceUrl * The location of the Salesforce Pardot resource. * @return Returns a reference to this object so that method calls can be chained together. */ public PardotConnectorProfileProperties withInstanceUrl(String instanceUrl) { setInstanceUrl(instanceUrl); return this; } /** ** Indicates whether the connector profile applies to a sandbox or production environment. *
* * @param isSandboxEnvironment * Indicates whether the connector profile applies to a sandbox or production environment. */ public void setIsSandboxEnvironment(Boolean isSandboxEnvironment) { this.isSandboxEnvironment = isSandboxEnvironment; } /** ** Indicates whether the connector profile applies to a sandbox or production environment. *
* * @return Indicates whether the connector profile applies to a sandbox or production environment. */ public Boolean getIsSandboxEnvironment() { return this.isSandboxEnvironment; } /** ** Indicates whether the connector profile applies to a sandbox or production environment. *
* * @param isSandboxEnvironment * Indicates whether the connector profile applies to a sandbox or production environment. * @return Returns a reference to this object so that method calls can be chained together. */ public PardotConnectorProfileProperties withIsSandboxEnvironment(Boolean isSandboxEnvironment) { setIsSandboxEnvironment(isSandboxEnvironment); return this; } /** ** Indicates whether the connector profile applies to a sandbox or production environment. *
* * @return Indicates whether the connector profile applies to a sandbox or production environment. */ public Boolean isSandboxEnvironment() { return this.isSandboxEnvironment; } /** ** The business unit id of Salesforce Pardot instance. *
* * @param businessUnitId * The business unit id of Salesforce Pardot instance. */ public void setBusinessUnitId(String businessUnitId) { this.businessUnitId = businessUnitId; } /** ** The business unit id of Salesforce Pardot instance. *
* * @return The business unit id of Salesforce Pardot instance. */ public String getBusinessUnitId() { return this.businessUnitId; } /** ** The business unit id of Salesforce Pardot instance. *
* * @param businessUnitId * The business unit id of Salesforce Pardot instance. * @return Returns a reference to this object so that method calls can be chained together. */ public PardotConnectorProfileProperties withBusinessUnitId(String businessUnitId) { setBusinessUnitId(businessUnitId); 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 (getInstanceUrl() != null) sb.append("InstanceUrl: ").append(getInstanceUrl()).append(","); if (getIsSandboxEnvironment() != null) sb.append("IsSandboxEnvironment: ").append(getIsSandboxEnvironment()).append(","); if (getBusinessUnitId() != null) sb.append("BusinessUnitId: ").append(getBusinessUnitId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PardotConnectorProfileProperties == false) return false; PardotConnectorProfileProperties other = (PardotConnectorProfileProperties) obj; if (other.getInstanceUrl() == null ^ this.getInstanceUrl() == null) return false; if (other.getInstanceUrl() != null && other.getInstanceUrl().equals(this.getInstanceUrl()) == false) return false; if (other.getIsSandboxEnvironment() == null ^ this.getIsSandboxEnvironment() == null) return false; if (other.getIsSandboxEnvironment() != null && other.getIsSandboxEnvironment().equals(this.getIsSandboxEnvironment()) == false) return false; if (other.getBusinessUnitId() == null ^ this.getBusinessUnitId() == null) return false; if (other.getBusinessUnitId() != null && other.getBusinessUnitId().equals(this.getBusinessUnitId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getInstanceUrl() == null) ? 0 : getInstanceUrl().hashCode()); hashCode = prime * hashCode + ((getIsSandboxEnvironment() == null) ? 0 : getIsSandboxEnvironment().hashCode()); hashCode = prime * hashCode + ((getBusinessUnitId() == null) ? 0 : getBusinessUnitId().hashCode()); return hashCode; } @Override public PardotConnectorProfileProperties clone() { try { return (PardotConnectorProfileProperties) 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.appflow.model.transform.PardotConnectorProfilePropertiesMarshaller.getInstance().marshall(this, protocolMarshaller); } }