All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.appsync.model.DomainNameConfig Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS AppSync module holds the client classes that are used for communicating with AWS AppSync Service

The newest version!
/*
 * Copyright 2019-2024 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.appsync.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Describes a configuration for a custom domain. *

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

* The domain name. *

*/ private String domainName; /** *

* A description of the DomainName configuration. *

*/ private String description; /** *

* The Amazon Resource Name (ARN) of the certificate. This can be an Certificate Manager (ACM) certificate or an * Identity and Access Management (IAM) server certificate. *

*/ private String certificateArn; /** *

* The domain name that AppSync provides. *

*/ private String appsyncDomainName; /** *

* The ID of your Amazon Route 53 hosted zone. *

*/ private String hostedZoneId; /** *

* The domain name. *

* * @param domainName * The domain name. */ public void setDomainName(String domainName) { this.domainName = domainName; } /** *

* The domain name. *

* * @return The domain name. */ public String getDomainName() { return this.domainName; } /** *

* The domain name. *

* * @param domainName * The domain name. * @return Returns a reference to this object so that method calls can be chained together. */ public DomainNameConfig withDomainName(String domainName) { setDomainName(domainName); return this; } /** *

* A description of the DomainName configuration. *

* * @param description * A description of the DomainName configuration. */ public void setDescription(String description) { this.description = description; } /** *

* A description of the DomainName configuration. *

* * @return A description of the DomainName configuration. */ public String getDescription() { return this.description; } /** *

* A description of the DomainName configuration. *

* * @param description * A description of the DomainName configuration. * @return Returns a reference to this object so that method calls can be chained together. */ public DomainNameConfig withDescription(String description) { setDescription(description); return this; } /** *

* The Amazon Resource Name (ARN) of the certificate. This can be an Certificate Manager (ACM) certificate or an * Identity and Access Management (IAM) server certificate. *

* * @param certificateArn * The Amazon Resource Name (ARN) of the certificate. This can be an Certificate Manager (ACM) certificate or * an Identity and Access Management (IAM) server certificate. */ public void setCertificateArn(String certificateArn) { this.certificateArn = certificateArn; } /** *

* The Amazon Resource Name (ARN) of the certificate. This can be an Certificate Manager (ACM) certificate or an * Identity and Access Management (IAM) server certificate. *

* * @return The Amazon Resource Name (ARN) of the certificate. This can be an Certificate Manager (ACM) certificate * or an Identity and Access Management (IAM) server certificate. */ public String getCertificateArn() { return this.certificateArn; } /** *

* The Amazon Resource Name (ARN) of the certificate. This can be an Certificate Manager (ACM) certificate or an * Identity and Access Management (IAM) server certificate. *

* * @param certificateArn * The Amazon Resource Name (ARN) of the certificate. This can be an Certificate Manager (ACM) certificate or * an Identity and Access Management (IAM) server certificate. * @return Returns a reference to this object so that method calls can be chained together. */ public DomainNameConfig withCertificateArn(String certificateArn) { setCertificateArn(certificateArn); return this; } /** *

* The domain name that AppSync provides. *

* * @param appsyncDomainName * The domain name that AppSync provides. */ public void setAppsyncDomainName(String appsyncDomainName) { this.appsyncDomainName = appsyncDomainName; } /** *

* The domain name that AppSync provides. *

* * @return The domain name that AppSync provides. */ public String getAppsyncDomainName() { return this.appsyncDomainName; } /** *

* The domain name that AppSync provides. *

* * @param appsyncDomainName * The domain name that AppSync provides. * @return Returns a reference to this object so that method calls can be chained together. */ public DomainNameConfig withAppsyncDomainName(String appsyncDomainName) { setAppsyncDomainName(appsyncDomainName); return this; } /** *

* The ID of your Amazon Route 53 hosted zone. *

* * @param hostedZoneId * The ID of your Amazon Route 53 hosted zone. */ public void setHostedZoneId(String hostedZoneId) { this.hostedZoneId = hostedZoneId; } /** *

* The ID of your Amazon Route 53 hosted zone. *

* * @return The ID of your Amazon Route 53 hosted zone. */ public String getHostedZoneId() { return this.hostedZoneId; } /** *

* The ID of your Amazon Route 53 hosted zone. *

* * @param hostedZoneId * The ID of your Amazon Route 53 hosted zone. * @return Returns a reference to this object so that method calls can be chained together. */ public DomainNameConfig withHostedZoneId(String hostedZoneId) { setHostedZoneId(hostedZoneId); 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 (getDomainName() != null) sb.append("DomainName: ").append(getDomainName()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getCertificateArn() != null) sb.append("CertificateArn: ").append(getCertificateArn()).append(","); if (getAppsyncDomainName() != null) sb.append("AppsyncDomainName: ").append(getAppsyncDomainName()).append(","); if (getHostedZoneId() != null) sb.append("HostedZoneId: ").append(getHostedZoneId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DomainNameConfig == false) return false; DomainNameConfig other = (DomainNameConfig) obj; if (other.getDomainName() == null ^ this.getDomainName() == null) return false; if (other.getDomainName() != null && other.getDomainName().equals(this.getDomainName()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getCertificateArn() == null ^ this.getCertificateArn() == null) return false; if (other.getCertificateArn() != null && other.getCertificateArn().equals(this.getCertificateArn()) == false) return false; if (other.getAppsyncDomainName() == null ^ this.getAppsyncDomainName() == null) return false; if (other.getAppsyncDomainName() != null && other.getAppsyncDomainName().equals(this.getAppsyncDomainName()) == false) return false; if (other.getHostedZoneId() == null ^ this.getHostedZoneId() == null) return false; if (other.getHostedZoneId() != null && other.getHostedZoneId().equals(this.getHostedZoneId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDomainName() == null) ? 0 : getDomainName().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getCertificateArn() == null) ? 0 : getCertificateArn().hashCode()); hashCode = prime * hashCode + ((getAppsyncDomainName() == null) ? 0 : getAppsyncDomainName().hashCode()); hashCode = prime * hashCode + ((getHostedZoneId() == null) ? 0 : getHostedZoneId().hashCode()); return hashCode; } @Override public DomainNameConfig clone() { try { return (DomainNameConfig) 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.appsync.model.transform.DomainNameConfigMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy