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

com.amazonaws.services.route53.model.CreateVPCAssociationAuthorizationRequest Maven / Gradle / Ivy

/*
 * 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.route53.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 

* A complex type that contains information about the request to authorize associating a VPC with your private hosted * zone. Authorization is only required when a private hosted zone and a VPC were created by using different accounts. *

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

* The ID of the private hosted zone that you want to authorize associating a VPC with. *

*/ private String hostedZoneId; /** *

* A complex type that contains the VPC ID and region for the VPC that you want to authorize associating with your * hosted zone. *

*/ private VPC vPC; /** *

* The ID of the private hosted zone that you want to authorize associating a VPC with. *

* * @param hostedZoneId * The ID of the private hosted zone that you want to authorize associating a VPC with. */ public void setHostedZoneId(String hostedZoneId) { this.hostedZoneId = hostedZoneId; } /** *

* The ID of the private hosted zone that you want to authorize associating a VPC with. *

* * @return The ID of the private hosted zone that you want to authorize associating a VPC with. */ public String getHostedZoneId() { return this.hostedZoneId; } /** *

* The ID of the private hosted zone that you want to authorize associating a VPC with. *

* * @param hostedZoneId * The ID of the private hosted zone that you want to authorize associating a VPC with. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVPCAssociationAuthorizationRequest withHostedZoneId(String hostedZoneId) { setHostedZoneId(hostedZoneId); return this; } /** *

* A complex type that contains the VPC ID and region for the VPC that you want to authorize associating with your * hosted zone. *

* * @param vPC * A complex type that contains the VPC ID and region for the VPC that you want to authorize associating with * your hosted zone. */ public void setVPC(VPC vPC) { this.vPC = vPC; } /** *

* A complex type that contains the VPC ID and region for the VPC that you want to authorize associating with your * hosted zone. *

* * @return A complex type that contains the VPC ID and region for the VPC that you want to authorize associating * with your hosted zone. */ public VPC getVPC() { return this.vPC; } /** *

* A complex type that contains the VPC ID and region for the VPC that you want to authorize associating with your * hosted zone. *

* * @param vPC * A complex type that contains the VPC ID and region for the VPC that you want to authorize associating with * your hosted zone. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVPCAssociationAuthorizationRequest withVPC(VPC vPC) { setVPC(vPC); 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 (getHostedZoneId() != null) sb.append("HostedZoneId: ").append(getHostedZoneId()).append(","); if (getVPC() != null) sb.append("VPC: ").append(getVPC()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateVPCAssociationAuthorizationRequest == false) return false; CreateVPCAssociationAuthorizationRequest other = (CreateVPCAssociationAuthorizationRequest) obj; if (other.getHostedZoneId() == null ^ this.getHostedZoneId() == null) return false; if (other.getHostedZoneId() != null && other.getHostedZoneId().equals(this.getHostedZoneId()) == false) return false; if (other.getVPC() == null ^ this.getVPC() == null) return false; if (other.getVPC() != null && other.getVPC().equals(this.getVPC()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getHostedZoneId() == null) ? 0 : getHostedZoneId().hashCode()); hashCode = prime * hashCode + ((getVPC() == null) ? 0 : getVPC().hashCode()); return hashCode; } @Override public CreateVPCAssociationAuthorizationRequest clone() { return (CreateVPCAssociationAuthorizationRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy