/* * 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.neptune.model; import java.io.Serializable; import javax.annotation.Generated; /** *
* Contains the details of an Amazon Neptune DB subnet group. *
** This data type is used as a response element in the DescribeDBSubnetGroups action. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DBSubnetGroup implements Serializable, Cloneable { /** ** The name of the DB subnet group. *
*/ private String dBSubnetGroupName; /** ** Provides the description of the DB subnet group. *
*/ private String dBSubnetGroupDescription; /** ** Provides the VpcId of the DB subnet group. *
*/ private String vpcId; /** ** Provides the status of the DB subnet group. *
*/ private String subnetGroupStatus; /** ** Contains a list of Subnet elements. *
*/ private java.util.List* The Amazon Resource Name (ARN) for the DB subnet group. *
*/ private String dBSubnetGroupArn; /** ** The name of the DB subnet group. *
* * @param dBSubnetGroupName * The name of the DB subnet group. */ public void setDBSubnetGroupName(String dBSubnetGroupName) { this.dBSubnetGroupName = dBSubnetGroupName; } /** ** The name of the DB subnet group. *
* * @return The name of the DB subnet group. */ public String getDBSubnetGroupName() { return this.dBSubnetGroupName; } /** ** The name of the DB subnet group. *
* * @param dBSubnetGroupName * The name of the DB subnet group. * @return Returns a reference to this object so that method calls can be chained together. */ public DBSubnetGroup withDBSubnetGroupName(String dBSubnetGroupName) { setDBSubnetGroupName(dBSubnetGroupName); return this; } /** ** Provides the description of the DB subnet group. *
* * @param dBSubnetGroupDescription * Provides the description of the DB subnet group. */ public void setDBSubnetGroupDescription(String dBSubnetGroupDescription) { this.dBSubnetGroupDescription = dBSubnetGroupDescription; } /** ** Provides the description of the DB subnet group. *
* * @return Provides the description of the DB subnet group. */ public String getDBSubnetGroupDescription() { return this.dBSubnetGroupDescription; } /** ** Provides the description of the DB subnet group. *
* * @param dBSubnetGroupDescription * Provides the description of the DB subnet group. * @return Returns a reference to this object so that method calls can be chained together. */ public DBSubnetGroup withDBSubnetGroupDescription(String dBSubnetGroupDescription) { setDBSubnetGroupDescription(dBSubnetGroupDescription); return this; } /** ** Provides the VpcId of the DB subnet group. *
* * @param vpcId * Provides the VpcId of the DB subnet group. */ public void setVpcId(String vpcId) { this.vpcId = vpcId; } /** ** Provides the VpcId of the DB subnet group. *
* * @return Provides the VpcId of the DB subnet group. */ public String getVpcId() { return this.vpcId; } /** ** Provides the VpcId of the DB subnet group. *
* * @param vpcId * Provides the VpcId of the DB subnet group. * @return Returns a reference to this object so that method calls can be chained together. */ public DBSubnetGroup withVpcId(String vpcId) { setVpcId(vpcId); return this; } /** ** Provides the status of the DB subnet group. *
* * @param subnetGroupStatus * Provides the status of the DB subnet group. */ public void setSubnetGroupStatus(String subnetGroupStatus) { this.subnetGroupStatus = subnetGroupStatus; } /** ** Provides the status of the DB subnet group. *
* * @return Provides the status of the DB subnet group. */ public String getSubnetGroupStatus() { return this.subnetGroupStatus; } /** ** Provides the status of the DB subnet group. *
* * @param subnetGroupStatus * Provides the status of the DB subnet group. * @return Returns a reference to this object so that method calls can be chained together. */ public DBSubnetGroup withSubnetGroupStatus(String subnetGroupStatus) { setSubnetGroupStatus(subnetGroupStatus); return this; } /** ** Contains a list of Subnet elements. *
* * @return Contains a list of Subnet elements. */ public java.util.List* Contains a list of Subnet elements. *
* * @param subnets * Contains a list of Subnet elements. */ public void setSubnets(java.util.Collection* Contains a list of Subnet elements. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setSubnets(java.util.Collection)} or {@link #withSubnets(java.util.Collection)} if you want to override * the existing values. *
* * @param subnets * Contains a list of Subnet elements. * @return Returns a reference to this object so that method calls can be chained together. */ public DBSubnetGroup withSubnets(Subnet... subnets) { if (this.subnets == null) { setSubnets(new java.util.ArrayList* Contains a list of Subnet elements. *
* * @param subnets * Contains a list of Subnet elements. * @return Returns a reference to this object so that method calls can be chained together. */ public DBSubnetGroup withSubnets(java.util.Collection* The Amazon Resource Name (ARN) for the DB subnet group. *
* * @param dBSubnetGroupArn * The Amazon Resource Name (ARN) for the DB subnet group. */ public void setDBSubnetGroupArn(String dBSubnetGroupArn) { this.dBSubnetGroupArn = dBSubnetGroupArn; } /** ** The Amazon Resource Name (ARN) for the DB subnet group. *
* * @return The Amazon Resource Name (ARN) for the DB subnet group. */ public String getDBSubnetGroupArn() { return this.dBSubnetGroupArn; } /** ** The Amazon Resource Name (ARN) for the DB subnet group. *
* * @param dBSubnetGroupArn * The Amazon Resource Name (ARN) for the DB subnet group. * @return Returns a reference to this object so that method calls can be chained together. */ public DBSubnetGroup withDBSubnetGroupArn(String dBSubnetGroupArn) { setDBSubnetGroupArn(dBSubnetGroupArn); 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 (getDBSubnetGroupName() != null) sb.append("DBSubnetGroupName: ").append(getDBSubnetGroupName()).append(","); if (getDBSubnetGroupDescription() != null) sb.append("DBSubnetGroupDescription: ").append(getDBSubnetGroupDescription()).append(","); if (getVpcId() != null) sb.append("VpcId: ").append(getVpcId()).append(","); if (getSubnetGroupStatus() != null) sb.append("SubnetGroupStatus: ").append(getSubnetGroupStatus()).append(","); if (getSubnets() != null) sb.append("Subnets: ").append(getSubnets()).append(","); if (getDBSubnetGroupArn() != null) sb.append("DBSubnetGroupArn: ").append(getDBSubnetGroupArn()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DBSubnetGroup == false) return false; DBSubnetGroup other = (DBSubnetGroup) obj; if (other.getDBSubnetGroupName() == null ^ this.getDBSubnetGroupName() == null) return false; if (other.getDBSubnetGroupName() != null && other.getDBSubnetGroupName().equals(this.getDBSubnetGroupName()) == false) return false; if (other.getDBSubnetGroupDescription() == null ^ this.getDBSubnetGroupDescription() == null) return false; if (other.getDBSubnetGroupDescription() != null && other.getDBSubnetGroupDescription().equals(this.getDBSubnetGroupDescription()) == false) return false; if (other.getVpcId() == null ^ this.getVpcId() == null) return false; if (other.getVpcId() != null && other.getVpcId().equals(this.getVpcId()) == false) return false; if (other.getSubnetGroupStatus() == null ^ this.getSubnetGroupStatus() == null) return false; if (other.getSubnetGroupStatus() != null && other.getSubnetGroupStatus().equals(this.getSubnetGroupStatus()) == false) return false; if (other.getSubnets() == null ^ this.getSubnets() == null) return false; if (other.getSubnets() != null && other.getSubnets().equals(this.getSubnets()) == false) return false; if (other.getDBSubnetGroupArn() == null ^ this.getDBSubnetGroupArn() == null) return false; if (other.getDBSubnetGroupArn() != null && other.getDBSubnetGroupArn().equals(this.getDBSubnetGroupArn()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDBSubnetGroupName() == null) ? 0 : getDBSubnetGroupName().hashCode()); hashCode = prime * hashCode + ((getDBSubnetGroupDescription() == null) ? 0 : getDBSubnetGroupDescription().hashCode()); hashCode = prime * hashCode + ((getVpcId() == null) ? 0 : getVpcId().hashCode()); hashCode = prime * hashCode + ((getSubnetGroupStatus() == null) ? 0 : getSubnetGroupStatus().hashCode()); hashCode = prime * hashCode + ((getSubnets() == null) ? 0 : getSubnets().hashCode()); hashCode = prime * hashCode + ((getDBSubnetGroupArn() == null) ? 0 : getDBSubnetGroupArn().hashCode()); return hashCode; } @Override public DBSubnetGroup clone() { try { return (DBSubnetGroup) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }