/* * Copyright 2018-2023 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.drs.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateSourceNetworkRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* Account containing the VPC to protect. *
*/ private String originAccountID; /** ** Region containing the VPC to protect. *
*/ private String originRegion; /** ** A set of tags to be associated with the Source Network resource. *
*/ private java.util.Map* Which VPC ID to protect. *
*/ private String vpcID; /** ** Account containing the VPC to protect. *
* * @param originAccountID * Account containing the VPC to protect. */ public void setOriginAccountID(String originAccountID) { this.originAccountID = originAccountID; } /** ** Account containing the VPC to protect. *
* * @return Account containing the VPC to protect. */ public String getOriginAccountID() { return this.originAccountID; } /** ** Account containing the VPC to protect. *
* * @param originAccountID * Account containing the VPC to protect. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSourceNetworkRequest withOriginAccountID(String originAccountID) { setOriginAccountID(originAccountID); return this; } /** ** Region containing the VPC to protect. *
* * @param originRegion * Region containing the VPC to protect. */ public void setOriginRegion(String originRegion) { this.originRegion = originRegion; } /** ** Region containing the VPC to protect. *
* * @return Region containing the VPC to protect. */ public String getOriginRegion() { return this.originRegion; } /** ** Region containing the VPC to protect. *
* * @param originRegion * Region containing the VPC to protect. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSourceNetworkRequest withOriginRegion(String originRegion) { setOriginRegion(originRegion); return this; } /** ** A set of tags to be associated with the Source Network resource. *
* * @return A set of tags to be associated with the Source Network resource. */ public java.util.Map* A set of tags to be associated with the Source Network resource. *
* * @param tags * A set of tags to be associated with the Source Network resource. */ public void setTags(java.util.Map* A set of tags to be associated with the Source Network resource. *
* * @param tags * A set of tags to be associated with the Source Network resource. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSourceNetworkRequest withTags(java.util.Map* Which VPC ID to protect. *
* * @param vpcID * Which VPC ID to protect. */ public void setVpcID(String vpcID) { this.vpcID = vpcID; } /** ** Which VPC ID to protect. *
* * @return Which VPC ID to protect. */ public String getVpcID() { return this.vpcID; } /** ** Which VPC ID to protect. *
* * @param vpcID * Which VPC ID to protect. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSourceNetworkRequest withVpcID(String vpcID) { setVpcID(vpcID); 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 (getOriginAccountID() != null) sb.append("OriginAccountID: ").append(getOriginAccountID()).append(","); if (getOriginRegion() != null) sb.append("OriginRegion: ").append(getOriginRegion()).append(","); if (getTags() != null) sb.append("Tags: ").append("***Sensitive Data Redacted***").append(","); if (getVpcID() != null) sb.append("VpcID: ").append(getVpcID()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateSourceNetworkRequest == false) return false; CreateSourceNetworkRequest other = (CreateSourceNetworkRequest) obj; if (other.getOriginAccountID() == null ^ this.getOriginAccountID() == null) return false; if (other.getOriginAccountID() != null && other.getOriginAccountID().equals(this.getOriginAccountID()) == false) return false; if (other.getOriginRegion() == null ^ this.getOriginRegion() == null) return false; if (other.getOriginRegion() != null && other.getOriginRegion().equals(this.getOriginRegion()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getVpcID() == null ^ this.getVpcID() == null) return false; if (other.getVpcID() != null && other.getVpcID().equals(this.getVpcID()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getOriginAccountID() == null) ? 0 : getOriginAccountID().hashCode()); hashCode = prime * hashCode + ((getOriginRegion() == null) ? 0 : getOriginRegion().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getVpcID() == null) ? 0 : getVpcID().hashCode()); return hashCode; } @Override public CreateSourceNetworkRequest clone() { return (CreateSourceNetworkRequest) super.clone(); } }