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

com.amazonaws.services.rds.model.DBSecurityGroup Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon RDS module holds the client classes that are used for communicating with Amazon Relational Database Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2016-2021 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.rds.model;

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

/**
 * 

* Contains the details for an Amazon RDS DB security group. *

*

* This data type is used as a response element in the DescribeDBSecurityGroups action. *

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

* Provides the Amazon Web Services ID of the owner of a specific DB security group. *

*/ private String ownerId; /** *

* Specifies the name of the DB security group. *

*/ private String dBSecurityGroupName; /** *

* Provides the description of the DB security group. *

*/ private String dBSecurityGroupDescription; /** *

* Provides the VpcId of the DB security group. *

*/ private String vpcId; /** *

* Contains a list of EC2SecurityGroup elements. *

*/ private com.amazonaws.internal.SdkInternalList eC2SecurityGroups; /** *

* Contains a list of IPRange elements. *

*/ private com.amazonaws.internal.SdkInternalList iPRanges; /** *

* The Amazon Resource Name (ARN) for the DB security group. *

*/ private String dBSecurityGroupArn; /** *

* Provides the Amazon Web Services ID of the owner of a specific DB security group. *

* * @param ownerId * Provides the Amazon Web Services ID of the owner of a specific DB security group. */ public void setOwnerId(String ownerId) { this.ownerId = ownerId; } /** *

* Provides the Amazon Web Services ID of the owner of a specific DB security group. *

* * @return Provides the Amazon Web Services ID of the owner of a specific DB security group. */ public String getOwnerId() { return this.ownerId; } /** *

* Provides the Amazon Web Services ID of the owner of a specific DB security group. *

* * @param ownerId * Provides the Amazon Web Services ID of the owner of a specific DB security group. * @return Returns a reference to this object so that method calls can be chained together. */ public DBSecurityGroup withOwnerId(String ownerId) { setOwnerId(ownerId); return this; } /** *

* Specifies the name of the DB security group. *

* * @param dBSecurityGroupName * Specifies the name of the DB security group. */ public void setDBSecurityGroupName(String dBSecurityGroupName) { this.dBSecurityGroupName = dBSecurityGroupName; } /** *

* Specifies the name of the DB security group. *

* * @return Specifies the name of the DB security group. */ public String getDBSecurityGroupName() { return this.dBSecurityGroupName; } /** *

* Specifies the name of the DB security group. *

* * @param dBSecurityGroupName * Specifies the name of the DB security group. * @return Returns a reference to this object so that method calls can be chained together. */ public DBSecurityGroup withDBSecurityGroupName(String dBSecurityGroupName) { setDBSecurityGroupName(dBSecurityGroupName); return this; } /** *

* Provides the description of the DB security group. *

* * @param dBSecurityGroupDescription * Provides the description of the DB security group. */ public void setDBSecurityGroupDescription(String dBSecurityGroupDescription) { this.dBSecurityGroupDescription = dBSecurityGroupDescription; } /** *

* Provides the description of the DB security group. *

* * @return Provides the description of the DB security group. */ public String getDBSecurityGroupDescription() { return this.dBSecurityGroupDescription; } /** *

* Provides the description of the DB security group. *

* * @param dBSecurityGroupDescription * Provides the description of the DB security group. * @return Returns a reference to this object so that method calls can be chained together. */ public DBSecurityGroup withDBSecurityGroupDescription(String dBSecurityGroupDescription) { setDBSecurityGroupDescription(dBSecurityGroupDescription); return this; } /** *

* Provides the VpcId of the DB security group. *

* * @param vpcId * Provides the VpcId of the DB security group. */ public void setVpcId(String vpcId) { this.vpcId = vpcId; } /** *

* Provides the VpcId of the DB security group. *

* * @return Provides the VpcId of the DB security group. */ public String getVpcId() { return this.vpcId; } /** *

* Provides the VpcId of the DB security group. *

* * @param vpcId * Provides the VpcId of the DB security group. * @return Returns a reference to this object so that method calls can be chained together. */ public DBSecurityGroup withVpcId(String vpcId) { setVpcId(vpcId); return this; } /** *

* Contains a list of EC2SecurityGroup elements. *

* * @return Contains a list of EC2SecurityGroup elements. */ public java.util.List getEC2SecurityGroups() { if (eC2SecurityGroups == null) { eC2SecurityGroups = new com.amazonaws.internal.SdkInternalList(); } return eC2SecurityGroups; } /** *

* Contains a list of EC2SecurityGroup elements. *

* * @param eC2SecurityGroups * Contains a list of EC2SecurityGroup elements. */ public void setEC2SecurityGroups(java.util.Collection eC2SecurityGroups) { if (eC2SecurityGroups == null) { this.eC2SecurityGroups = null; return; } this.eC2SecurityGroups = new com.amazonaws.internal.SdkInternalList(eC2SecurityGroups); } /** *

* Contains a list of EC2SecurityGroup elements. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setEC2SecurityGroups(java.util.Collection)} or {@link #withEC2SecurityGroups(java.util.Collection)} if * you want to override the existing values. *

* * @param eC2SecurityGroups * Contains a list of EC2SecurityGroup elements. * @return Returns a reference to this object so that method calls can be chained together. */ public DBSecurityGroup withEC2SecurityGroups(EC2SecurityGroup... eC2SecurityGroups) { if (this.eC2SecurityGroups == null) { setEC2SecurityGroups(new com.amazonaws.internal.SdkInternalList(eC2SecurityGroups.length)); } for (EC2SecurityGroup ele : eC2SecurityGroups) { this.eC2SecurityGroups.add(ele); } return this; } /** *

* Contains a list of EC2SecurityGroup elements. *

* * @param eC2SecurityGroups * Contains a list of EC2SecurityGroup elements. * @return Returns a reference to this object so that method calls can be chained together. */ public DBSecurityGroup withEC2SecurityGroups(java.util.Collection eC2SecurityGroups) { setEC2SecurityGroups(eC2SecurityGroups); return this; } /** *

* Contains a list of IPRange elements. *

* * @return Contains a list of IPRange elements. */ public java.util.List getIPRanges() { if (iPRanges == null) { iPRanges = new com.amazonaws.internal.SdkInternalList(); } return iPRanges; } /** *

* Contains a list of IPRange elements. *

* * @param iPRanges * Contains a list of IPRange elements. */ public void setIPRanges(java.util.Collection iPRanges) { if (iPRanges == null) { this.iPRanges = null; return; } this.iPRanges = new com.amazonaws.internal.SdkInternalList(iPRanges); } /** *

* Contains a list of IPRange elements. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setIPRanges(java.util.Collection)} or {@link #withIPRanges(java.util.Collection)} if you want to override * the existing values. *

* * @param iPRanges * Contains a list of IPRange elements. * @return Returns a reference to this object so that method calls can be chained together. */ public DBSecurityGroup withIPRanges(IPRange... iPRanges) { if (this.iPRanges == null) { setIPRanges(new com.amazonaws.internal.SdkInternalList(iPRanges.length)); } for (IPRange ele : iPRanges) { this.iPRanges.add(ele); } return this; } /** *

* Contains a list of IPRange elements. *

* * @param iPRanges * Contains a list of IPRange elements. * @return Returns a reference to this object so that method calls can be chained together. */ public DBSecurityGroup withIPRanges(java.util.Collection iPRanges) { setIPRanges(iPRanges); return this; } /** *

* The Amazon Resource Name (ARN) for the DB security group. *

* * @param dBSecurityGroupArn * The Amazon Resource Name (ARN) for the DB security group. */ public void setDBSecurityGroupArn(String dBSecurityGroupArn) { this.dBSecurityGroupArn = dBSecurityGroupArn; } /** *

* The Amazon Resource Name (ARN) for the DB security group. *

* * @return The Amazon Resource Name (ARN) for the DB security group. */ public String getDBSecurityGroupArn() { return this.dBSecurityGroupArn; } /** *

* The Amazon Resource Name (ARN) for the DB security group. *

* * @param dBSecurityGroupArn * The Amazon Resource Name (ARN) for the DB security group. * @return Returns a reference to this object so that method calls can be chained together. */ public DBSecurityGroup withDBSecurityGroupArn(String dBSecurityGroupArn) { setDBSecurityGroupArn(dBSecurityGroupArn); 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 (getOwnerId() != null) sb.append("OwnerId: ").append(getOwnerId()).append(","); if (getDBSecurityGroupName() != null) sb.append("DBSecurityGroupName: ").append(getDBSecurityGroupName()).append(","); if (getDBSecurityGroupDescription() != null) sb.append("DBSecurityGroupDescription: ").append(getDBSecurityGroupDescription()).append(","); if (getVpcId() != null) sb.append("VpcId: ").append(getVpcId()).append(","); if (getEC2SecurityGroups() != null) sb.append("EC2SecurityGroups: ").append(getEC2SecurityGroups()).append(","); if (getIPRanges() != null) sb.append("IPRanges: ").append(getIPRanges()).append(","); if (getDBSecurityGroupArn() != null) sb.append("DBSecurityGroupArn: ").append(getDBSecurityGroupArn()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DBSecurityGroup == false) return false; DBSecurityGroup other = (DBSecurityGroup) obj; if (other.getOwnerId() == null ^ this.getOwnerId() == null) return false; if (other.getOwnerId() != null && other.getOwnerId().equals(this.getOwnerId()) == false) return false; if (other.getDBSecurityGroupName() == null ^ this.getDBSecurityGroupName() == null) return false; if (other.getDBSecurityGroupName() != null && other.getDBSecurityGroupName().equals(this.getDBSecurityGroupName()) == false) return false; if (other.getDBSecurityGroupDescription() == null ^ this.getDBSecurityGroupDescription() == null) return false; if (other.getDBSecurityGroupDescription() != null && other.getDBSecurityGroupDescription().equals(this.getDBSecurityGroupDescription()) == 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.getEC2SecurityGroups() == null ^ this.getEC2SecurityGroups() == null) return false; if (other.getEC2SecurityGroups() != null && other.getEC2SecurityGroups().equals(this.getEC2SecurityGroups()) == false) return false; if (other.getIPRanges() == null ^ this.getIPRanges() == null) return false; if (other.getIPRanges() != null && other.getIPRanges().equals(this.getIPRanges()) == false) return false; if (other.getDBSecurityGroupArn() == null ^ this.getDBSecurityGroupArn() == null) return false; if (other.getDBSecurityGroupArn() != null && other.getDBSecurityGroupArn().equals(this.getDBSecurityGroupArn()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getOwnerId() == null) ? 0 : getOwnerId().hashCode()); hashCode = prime * hashCode + ((getDBSecurityGroupName() == null) ? 0 : getDBSecurityGroupName().hashCode()); hashCode = prime * hashCode + ((getDBSecurityGroupDescription() == null) ? 0 : getDBSecurityGroupDescription().hashCode()); hashCode = prime * hashCode + ((getVpcId() == null) ? 0 : getVpcId().hashCode()); hashCode = prime * hashCode + ((getEC2SecurityGroups() == null) ? 0 : getEC2SecurityGroups().hashCode()); hashCode = prime * hashCode + ((getIPRanges() == null) ? 0 : getIPRanges().hashCode()); hashCode = prime * hashCode + ((getDBSecurityGroupArn() == null) ? 0 : getDBSecurityGroupArn().hashCode()); return hashCode; } @Override public DBSecurityGroup clone() { try { return (DBSecurityGroup) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy