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

com.amazonaws.services.route53recoveryreadiness.model.DNSTargetResource Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.778
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.route53recoveryreadiness.model;

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

/**
 * 

* A component for DNS/routing control readiness checks and architecture checks. *

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

* The domain name that acts as an ingress point to a portion of the customer application. *

*/ private String domainName; /** *

* The hosted zone Amazon Resource Name (ARN) that contains the DNS record with the provided name of the target * resource. *

*/ private String hostedZoneArn; /** *

* The Route 53 record set ID that uniquely identifies a DNS record, given a name and a type. *

*/ private String recordSetId; /** *

* The type of DNS record of the target resource. *

*/ private String recordType; /** *

* The target resource of the DNS target resource. *

*/ private TargetResource targetResource; /** *

* The domain name that acts as an ingress point to a portion of the customer application. *

* * @param domainName * The domain name that acts as an ingress point to a portion of the customer application. */ public void setDomainName(String domainName) { this.domainName = domainName; } /** *

* The domain name that acts as an ingress point to a portion of the customer application. *

* * @return The domain name that acts as an ingress point to a portion of the customer application. */ public String getDomainName() { return this.domainName; } /** *

* The domain name that acts as an ingress point to a portion of the customer application. *

* * @param domainName * The domain name that acts as an ingress point to a portion of the customer application. * @return Returns a reference to this object so that method calls can be chained together. */ public DNSTargetResource withDomainName(String domainName) { setDomainName(domainName); return this; } /** *

* The hosted zone Amazon Resource Name (ARN) that contains the DNS record with the provided name of the target * resource. *

* * @param hostedZoneArn * The hosted zone Amazon Resource Name (ARN) that contains the DNS record with the provided name of the * target resource. */ public void setHostedZoneArn(String hostedZoneArn) { this.hostedZoneArn = hostedZoneArn; } /** *

* The hosted zone Amazon Resource Name (ARN) that contains the DNS record with the provided name of the target * resource. *

* * @return The hosted zone Amazon Resource Name (ARN) that contains the DNS record with the provided name of the * target resource. */ public String getHostedZoneArn() { return this.hostedZoneArn; } /** *

* The hosted zone Amazon Resource Name (ARN) that contains the DNS record with the provided name of the target * resource. *

* * @param hostedZoneArn * The hosted zone Amazon Resource Name (ARN) that contains the DNS record with the provided name of the * target resource. * @return Returns a reference to this object so that method calls can be chained together. */ public DNSTargetResource withHostedZoneArn(String hostedZoneArn) { setHostedZoneArn(hostedZoneArn); return this; } /** *

* The Route 53 record set ID that uniquely identifies a DNS record, given a name and a type. *

* * @param recordSetId * The Route 53 record set ID that uniquely identifies a DNS record, given a name and a type. */ public void setRecordSetId(String recordSetId) { this.recordSetId = recordSetId; } /** *

* The Route 53 record set ID that uniquely identifies a DNS record, given a name and a type. *

* * @return The Route 53 record set ID that uniquely identifies a DNS record, given a name and a type. */ public String getRecordSetId() { return this.recordSetId; } /** *

* The Route 53 record set ID that uniquely identifies a DNS record, given a name and a type. *

* * @param recordSetId * The Route 53 record set ID that uniquely identifies a DNS record, given a name and a type. * @return Returns a reference to this object so that method calls can be chained together. */ public DNSTargetResource withRecordSetId(String recordSetId) { setRecordSetId(recordSetId); return this; } /** *

* The type of DNS record of the target resource. *

* * @param recordType * The type of DNS record of the target resource. */ public void setRecordType(String recordType) { this.recordType = recordType; } /** *

* The type of DNS record of the target resource. *

* * @return The type of DNS record of the target resource. */ public String getRecordType() { return this.recordType; } /** *

* The type of DNS record of the target resource. *

* * @param recordType * The type of DNS record of the target resource. * @return Returns a reference to this object so that method calls can be chained together. */ public DNSTargetResource withRecordType(String recordType) { setRecordType(recordType); return this; } /** *

* The target resource of the DNS target resource. *

* * @param targetResource * The target resource of the DNS target resource. */ public void setTargetResource(TargetResource targetResource) { this.targetResource = targetResource; } /** *

* The target resource of the DNS target resource. *

* * @return The target resource of the DNS target resource. */ public TargetResource getTargetResource() { return this.targetResource; } /** *

* The target resource of the DNS target resource. *

* * @param targetResource * The target resource of the DNS target resource. * @return Returns a reference to this object so that method calls can be chained together. */ public DNSTargetResource withTargetResource(TargetResource targetResource) { setTargetResource(targetResource); 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 (getHostedZoneArn() != null) sb.append("HostedZoneArn: ").append(getHostedZoneArn()).append(","); if (getRecordSetId() != null) sb.append("RecordSetId: ").append(getRecordSetId()).append(","); if (getRecordType() != null) sb.append("RecordType: ").append(getRecordType()).append(","); if (getTargetResource() != null) sb.append("TargetResource: ").append(getTargetResource()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DNSTargetResource == false) return false; DNSTargetResource other = (DNSTargetResource) obj; if (other.getDomainName() == null ^ this.getDomainName() == null) return false; if (other.getDomainName() != null && other.getDomainName().equals(this.getDomainName()) == false) return false; if (other.getHostedZoneArn() == null ^ this.getHostedZoneArn() == null) return false; if (other.getHostedZoneArn() != null && other.getHostedZoneArn().equals(this.getHostedZoneArn()) == false) return false; if (other.getRecordSetId() == null ^ this.getRecordSetId() == null) return false; if (other.getRecordSetId() != null && other.getRecordSetId().equals(this.getRecordSetId()) == false) return false; if (other.getRecordType() == null ^ this.getRecordType() == null) return false; if (other.getRecordType() != null && other.getRecordType().equals(this.getRecordType()) == false) return false; if (other.getTargetResource() == null ^ this.getTargetResource() == null) return false; if (other.getTargetResource() != null && other.getTargetResource().equals(this.getTargetResource()) == 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 + ((getHostedZoneArn() == null) ? 0 : getHostedZoneArn().hashCode()); hashCode = prime * hashCode + ((getRecordSetId() == null) ? 0 : getRecordSetId().hashCode()); hashCode = prime * hashCode + ((getRecordType() == null) ? 0 : getRecordType().hashCode()); hashCode = prime * hashCode + ((getTargetResource() == null) ? 0 : getTargetResource().hashCode()); return hashCode; } @Override public DNSTargetResource clone() { try { return (DNSTargetResource) 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.route53recoveryreadiness.model.transform.DNSTargetResourceMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy