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

com.amazonaws.services.apprunner.model.CertificateValidationRecord Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.780
Show 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.apprunner.model;

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

/**
 * 

* Describes a certificate CNAME record to add to your DNS. For more information, see AssociateCustomDomain. *

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

* The certificate CNAME record name. *

*/ private String name; /** *

* The record type, always CNAME. *

*/ private String type; /** *

* The certificate CNAME record value. *

*/ private String value; /** *

* The current state of the certificate CNAME record validation. It should change to SUCCESS after App * Runner completes validation with your DNS. *

*/ private String status; /** *

* The certificate CNAME record name. *

* * @param name * The certificate CNAME record name. */ public void setName(String name) { this.name = name; } /** *

* The certificate CNAME record name. *

* * @return The certificate CNAME record name. */ public String getName() { return this.name; } /** *

* The certificate CNAME record name. *

* * @param name * The certificate CNAME record name. * @return Returns a reference to this object so that method calls can be chained together. */ public CertificateValidationRecord withName(String name) { setName(name); return this; } /** *

* The record type, always CNAME. *

* * @param type * The record type, always CNAME. */ public void setType(String type) { this.type = type; } /** *

* The record type, always CNAME. *

* * @return The record type, always CNAME. */ public String getType() { return this.type; } /** *

* The record type, always CNAME. *

* * @param type * The record type, always CNAME. * @return Returns a reference to this object so that method calls can be chained together. */ public CertificateValidationRecord withType(String type) { setType(type); return this; } /** *

* The certificate CNAME record value. *

* * @param value * The certificate CNAME record value. */ public void setValue(String value) { this.value = value; } /** *

* The certificate CNAME record value. *

* * @return The certificate CNAME record value. */ public String getValue() { return this.value; } /** *

* The certificate CNAME record value. *

* * @param value * The certificate CNAME record value. * @return Returns a reference to this object so that method calls can be chained together. */ public CertificateValidationRecord withValue(String value) { setValue(value); return this; } /** *

* The current state of the certificate CNAME record validation. It should change to SUCCESS after App * Runner completes validation with your DNS. *

* * @param status * The current state of the certificate CNAME record validation. It should change to SUCCESS * after App Runner completes validation with your DNS. * @see CertificateValidationRecordStatus */ public void setStatus(String status) { this.status = status; } /** *

* The current state of the certificate CNAME record validation. It should change to SUCCESS after App * Runner completes validation with your DNS. *

* * @return The current state of the certificate CNAME record validation. It should change to SUCCESS * after App Runner completes validation with your DNS. * @see CertificateValidationRecordStatus */ public String getStatus() { return this.status; } /** *

* The current state of the certificate CNAME record validation. It should change to SUCCESS after App * Runner completes validation with your DNS. *

* * @param status * The current state of the certificate CNAME record validation. It should change to SUCCESS * after App Runner completes validation with your DNS. * @return Returns a reference to this object so that method calls can be chained together. * @see CertificateValidationRecordStatus */ public CertificateValidationRecord withStatus(String status) { setStatus(status); return this; } /** *

* The current state of the certificate CNAME record validation. It should change to SUCCESS after App * Runner completes validation with your DNS. *

* * @param status * The current state of the certificate CNAME record validation. It should change to SUCCESS * after App Runner completes validation with your DNS. * @return Returns a reference to this object so that method calls can be chained together. * @see CertificateValidationRecordStatus */ public CertificateValidationRecord withStatus(CertificateValidationRecordStatus status) { this.status = status.toString(); 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 (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getType() != null) sb.append("Type: ").append(getType()).append(","); if (getValue() != null) sb.append("Value: ").append(getValue()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CertificateValidationRecord == false) return false; CertificateValidationRecord other = (CertificateValidationRecord) obj; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getType() == null ^ this.getType() == null) return false; if (other.getType() != null && other.getType().equals(this.getType()) == false) return false; if (other.getValue() == null ^ this.getValue() == null) return false; if (other.getValue() != null && other.getValue().equals(this.getValue()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode()); hashCode = prime * hashCode + ((getValue() == null) ? 0 : getValue().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); return hashCode; } @Override public CertificateValidationRecord clone() { try { return (CertificateValidationRecord) 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.apprunner.model.transform.CertificateValidationRecordMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy