* The App Runner subdomain of the App Runner service. The associated custom domain names are mapped to this target * name. *
*/ private String dNSTarget; /** ** The Amazon Resource Name (ARN) of the App Runner service whose associated custom domain names you want to * describe. *
*/ private String serviceArn; /** *
* A list of descriptions of custom domain names that are associated with the service. In a paginated request, the
* request returns up to MaxResults
records per call.
*
* DNS Target records for the custom domains of this Amazon VPC. *
*/ private java.util.List* The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated * request. *
*/ private String nextToken; /** ** The App Runner subdomain of the App Runner service. The associated custom domain names are mapped to this target * name. *
* * @param dNSTarget * The App Runner subdomain of the App Runner service. The associated custom domain names are mapped to this * target name. */ public void setDNSTarget(String dNSTarget) { this.dNSTarget = dNSTarget; } /** ** The App Runner subdomain of the App Runner service. The associated custom domain names are mapped to this target * name. *
* * @return The App Runner subdomain of the App Runner service. The associated custom domain names are mapped to this * target name. */ public String getDNSTarget() { return this.dNSTarget; } /** ** The App Runner subdomain of the App Runner service. The associated custom domain names are mapped to this target * name. *
* * @param dNSTarget * The App Runner subdomain of the App Runner service. The associated custom domain names are mapped to this * target name. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeCustomDomainsResult withDNSTarget(String dNSTarget) { setDNSTarget(dNSTarget); return this; } /** ** The Amazon Resource Name (ARN) of the App Runner service whose associated custom domain names you want to * describe. *
* * @param serviceArn * The Amazon Resource Name (ARN) of the App Runner service whose associated custom domain names you want to * describe. */ public void setServiceArn(String serviceArn) { this.serviceArn = serviceArn; } /** ** The Amazon Resource Name (ARN) of the App Runner service whose associated custom domain names you want to * describe. *
* * @return The Amazon Resource Name (ARN) of the App Runner service whose associated custom domain names you want to * describe. */ public String getServiceArn() { return this.serviceArn; } /** ** The Amazon Resource Name (ARN) of the App Runner service whose associated custom domain names you want to * describe. *
* * @param serviceArn * The Amazon Resource Name (ARN) of the App Runner service whose associated custom domain names you want to * describe. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeCustomDomainsResult withServiceArn(String serviceArn) { setServiceArn(serviceArn); return this; } /** *
* A list of descriptions of custom domain names that are associated with the service. In a paginated request, the
* request returns up to MaxResults
records per call.
*
MaxResults
records per call.
*/
public java.util.List
* A list of descriptions of custom domain names that are associated with the service. In a paginated request, the
* request returns up to MaxResults
records per call.
*
MaxResults
records per call.
*/
public void setCustomDomains(java.util.Collection
* A list of descriptions of custom domain names that are associated with the service. In a paginated request, the
* request returns up to MaxResults
records per call.
*
* NOTE: This method appends the values to the existing list (if any). Use * {@link #setCustomDomains(java.util.Collection)} or {@link #withCustomDomains(java.util.Collection)} if you want * to override the existing values. *
* * @param customDomains * A list of descriptions of custom domain names that are associated with the service. In a paginated * request, the request returns up toMaxResults
records per call.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeCustomDomainsResult withCustomDomains(CustomDomain... customDomains) {
if (this.customDomains == null) {
setCustomDomains(new java.util.ArrayList
* A list of descriptions of custom domain names that are associated with the service. In a paginated request, the
* request returns up to MaxResults
records per call.
*
MaxResults
records per call.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeCustomDomainsResult withCustomDomains(java.util.Collection* 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* 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* 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 DescribeCustomDomainsResult withVpcDNSTargets(VpcDNSTarget... vpcDNSTargets) { if (this.vpcDNSTargets == null) { setVpcDNSTargets(new java.util.ArrayList* 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 DescribeCustomDomainsResult withVpcDNSTargets(java.util.Collection* The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated * request. *
* * @param nextToken * The token that you can pass in a subsequent request to get the next result page. It's returned in a * paginated request. */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** ** The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated * request. *
* * @return The token that you can pass in a subsequent request to get the next result page. It's returned in a * paginated request. */ public String getNextToken() { return this.nextToken; } /** ** The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated * request. *
* * @param nextToken * The token that you can pass in a subsequent request to get the next result page. It's returned in a * paginated request. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeCustomDomainsResult 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 (getDNSTarget() != null) sb.append("DNSTarget: ").append(getDNSTarget()).append(","); if (getServiceArn() != null) sb.append("ServiceArn: ").append(getServiceArn()).append(","); if (getCustomDomains() != null) sb.append("CustomDomains: ").append(getCustomDomains()).append(","); if (getVpcDNSTargets() != null) sb.append("VpcDNSTargets: ").append(getVpcDNSTargets()).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 DescribeCustomDomainsResult == false) return false; DescribeCustomDomainsResult other = (DescribeCustomDomainsResult) 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.getCustomDomains() == null ^ this.getCustomDomains() == null) return false; if (other.getCustomDomains() != null && other.getCustomDomains().equals(this.getCustomDomains()) == false) return false; if (other.getVpcDNSTargets() == null ^ this.getVpcDNSTargets() == null) return false; if (other.getVpcDNSTargets() != null && other.getVpcDNSTargets().equals(this.getVpcDNSTargets()) == 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 + ((getDNSTarget() == null) ? 0 : getDNSTarget().hashCode()); hashCode = prime * hashCode + ((getServiceArn() == null) ? 0 : getServiceArn().hashCode()); hashCode = prime * hashCode + ((getCustomDomains() == null) ? 0 : getCustomDomains().hashCode()); hashCode = prime * hashCode + ((getVpcDNSTargets() == null) ? 0 : getVpcDNSTargets().hashCode()); hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); return hashCode; } @Override public DescribeCustomDomainsResult clone() { try { return (DescribeCustomDomainsResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }