/* * 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.apprunner.model; import java.io.Serializable; import javax.annotation.Generated; /** * * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class AssociateCustomDomainResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable { /** *

* The App Runner subdomain of the App Runner service. The custom domain name is mapped to this target name. *

*/ private String dNSTarget; /** *

* The Amazon Resource Name (ARN) of the App Runner service with which a custom domain name is associated. *

*/ private String serviceArn; /** *

* A description of the domain name that's being associated. *

*/ private CustomDomain customDomain; /** *

* DNS Target records for the custom domains of this Amazon VPC. *

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

* The App Runner subdomain of the App Runner service. The custom domain name is mapped to this target name. *

* * @param dNSTarget * The App Runner subdomain of the App Runner service. The custom domain name is mapped to this target name. */ public void setDNSTarget(String dNSTarget) { this.dNSTarget = dNSTarget; } /** *

* The App Runner subdomain of the App Runner service. The custom domain name is mapped to this target name. *

* * @return The App Runner subdomain of the App Runner service. The custom domain name is mapped to this target name. */ public String getDNSTarget() { return this.dNSTarget; } /** *

* The App Runner subdomain of the App Runner service. The custom domain name is mapped to this target name. *

* * @param dNSTarget * The App Runner subdomain of the App Runner service. The custom domain name is mapped to this target name. * @return Returns a reference to this object so that method calls can be chained together. */ public AssociateCustomDomainResult withDNSTarget(String dNSTarget) { setDNSTarget(dNSTarget); return this; } /** *

* The Amazon Resource Name (ARN) of the App Runner service with which a custom domain name is associated. *

* * @param serviceArn * The Amazon Resource Name (ARN) of the App Runner service with which a custom domain name is associated. */ public void setServiceArn(String serviceArn) { this.serviceArn = serviceArn; } /** *

* The Amazon Resource Name (ARN) of the App Runner service with which a custom domain name is associated. *

* * @return The Amazon Resource Name (ARN) of the App Runner service with which a custom domain name is associated. */ public String getServiceArn() { return this.serviceArn; } /** *

* The Amazon Resource Name (ARN) of the App Runner service with which a custom domain name is associated. *

* * @param serviceArn * The Amazon Resource Name (ARN) of the App Runner service with which a custom domain name is associated. * @return Returns a reference to this object so that method calls can be chained together. */ public AssociateCustomDomainResult withServiceArn(String serviceArn) { setServiceArn(serviceArn); return this; } /** *

* A description of the domain name that's being associated. *

* * @param customDomain * A description of the domain name that's being associated. */ public void setCustomDomain(CustomDomain customDomain) { this.customDomain = customDomain; } /** *

* A description of the domain name that's being associated. *

* * @return A description of the domain name that's being associated. */ public CustomDomain getCustomDomain() { return this.customDomain; } /** *

* A description of the domain name that's being associated. *

* * @param customDomain * A description of the domain name that's being associated. * @return Returns a reference to this object so that method calls can be chained together. */ public AssociateCustomDomainResult withCustomDomain(CustomDomain customDomain) { setCustomDomain(customDomain); return this; } /** *

* DNS Target records for the custom domains of this Amazon VPC. *

* * @return DNS Target records for the custom domains of this Amazon VPC. */ public java.util.List getVpcDNSTargets() { return vpcDNSTargets; } /** *

* DNS Target records for the custom domains of this Amazon VPC. *

* * @param vpcDNSTargets * DNS Target records for the custom domains of this Amazon VPC. */ public void setVpcDNSTargets(java.util.Collection vpcDNSTargets) { if (vpcDNSTargets == null) { this.vpcDNSTargets = null; return; } this.vpcDNSTargets = new java.util.ArrayList(vpcDNSTargets); } /** *

* DNS Target records for the custom domains of this Amazon VPC. *

*

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

* * @param vpcDNSTargets * DNS Target records for the custom domains of this Amazon VPC. * @return Returns a reference to this object so that method calls can be chained together. */ public AssociateCustomDomainResult withVpcDNSTargets(VpcDNSTarget... vpcDNSTargets) { if (this.vpcDNSTargets == null) { setVpcDNSTargets(new java.util.ArrayList(vpcDNSTargets.length)); } for (VpcDNSTarget ele : vpcDNSTargets) { this.vpcDNSTargets.add(ele); } return this; } /** *

* DNS Target records for the custom domains of this Amazon VPC. *

* * @param vpcDNSTargets * DNS Target records for the custom domains of this Amazon VPC. * @return Returns a reference to this object so that method calls can be chained together. */ public AssociateCustomDomainResult withVpcDNSTargets(java.util.Collection vpcDNSTargets) { setVpcDNSTargets(vpcDNSTargets); 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 (getDNSTarget() != null) sb.append("DNSTarget: ").append(getDNSTarget()).append(","); if (getServiceArn() != null) sb.append("ServiceArn: ").append(getServiceArn()).append(","); if (getCustomDomain() != null) sb.append("CustomDomain: ").append(getCustomDomain()).append(","); if (getVpcDNSTargets() != null) sb.append("VpcDNSTargets: ").append(getVpcDNSTargets()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AssociateCustomDomainResult == false) return false; AssociateCustomDomainResult other = (AssociateCustomDomainResult) obj; if (other.getDNSTarget() == null ^ this.getDNSTarget() == null) return false; if (other.getDNSTarget() != null && other.getDNSTarget().equals(this.getDNSTarget()) == false) return false; if (other.getServiceArn() == null ^ this.getServiceArn() == null) return false; if (other.getServiceArn() != null && other.getServiceArn().equals(this.getServiceArn()) == false) return false; if (other.getCustomDomain() == null ^ this.getCustomDomain() == null) return false; if (other.getCustomDomain() != null && other.getCustomDomain().equals(this.getCustomDomain()) == false) return false; if (other.getVpcDNSTargets() == null ^ this.getVpcDNSTargets() == null) return false; if (other.getVpcDNSTargets() != null && other.getVpcDNSTargets().equals(this.getVpcDNSTargets()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDNSTarget() == null) ? 0 : getDNSTarget().hashCode()); hashCode = prime * hashCode + ((getServiceArn() == null) ? 0 : getServiceArn().hashCode()); hashCode = prime * hashCode + ((getCustomDomain() == null) ? 0 : getCustomDomain().hashCode()); hashCode = prime * hashCode + ((getVpcDNSTargets() == null) ? 0 : getVpcDNSTargets().hashCode()); return hashCode; } @Override public AssociateCustomDomainResult clone() { try { return (AssociateCustomDomainResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }