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

com.amazonaws.services.elasticache.model.CacheSecurityGroup Maven / Gradle / Ivy

Go to download

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

The 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.elasticache.model;

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

/**
 * 

* Represents the output of one of the following operations: *

*
    *
  • *

    * AuthorizeCacheSecurityGroupIngress *

    *
  • *
  • *

    * CreateCacheSecurityGroup *

    *
  • *
  • *

    * RevokeCacheSecurityGroupIngress *

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

* The Amazon account ID of the cache security group owner. *

*/ private String ownerId; /** *

* The name of the cache security group. *

*/ private String cacheSecurityGroupName; /** *

* The description of the cache security group. *

*/ private String description; /** *

* A list of Amazon EC2 security groups that are associated with this cache security group. *

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

* The ARN of the cache security group, *

*/ private String aRN; /** *

* The Amazon account ID of the cache security group owner. *

* * @param ownerId * The Amazon account ID of the cache security group owner. */ public void setOwnerId(String ownerId) { this.ownerId = ownerId; } /** *

* The Amazon account ID of the cache security group owner. *

* * @return The Amazon account ID of the cache security group owner. */ public String getOwnerId() { return this.ownerId; } /** *

* The Amazon account ID of the cache security group owner. *

* * @param ownerId * The Amazon account ID of the cache security group owner. * @return Returns a reference to this object so that method calls can be chained together. */ public CacheSecurityGroup withOwnerId(String ownerId) { setOwnerId(ownerId); return this; } /** *

* The name of the cache security group. *

* * @param cacheSecurityGroupName * The name of the cache security group. */ public void setCacheSecurityGroupName(String cacheSecurityGroupName) { this.cacheSecurityGroupName = cacheSecurityGroupName; } /** *

* The name of the cache security group. *

* * @return The name of the cache security group. */ public String getCacheSecurityGroupName() { return this.cacheSecurityGroupName; } /** *

* The name of the cache security group. *

* * @param cacheSecurityGroupName * The name of the cache security group. * @return Returns a reference to this object so that method calls can be chained together. */ public CacheSecurityGroup withCacheSecurityGroupName(String cacheSecurityGroupName) { setCacheSecurityGroupName(cacheSecurityGroupName); return this; } /** *

* The description of the cache security group. *

* * @param description * The description of the cache security group. */ public void setDescription(String description) { this.description = description; } /** *

* The description of the cache security group. *

* * @return The description of the cache security group. */ public String getDescription() { return this.description; } /** *

* The description of the cache security group. *

* * @param description * The description of the cache security group. * @return Returns a reference to this object so that method calls can be chained together. */ public CacheSecurityGroup withDescription(String description) { setDescription(description); return this; } /** *

* A list of Amazon EC2 security groups that are associated with this cache security group. *

* * @return A list of Amazon EC2 security groups that are associated with this cache security group. */ public java.util.List getEC2SecurityGroups() { if (eC2SecurityGroups == null) { eC2SecurityGroups = new com.amazonaws.internal.SdkInternalList(); } return eC2SecurityGroups; } /** *

* A list of Amazon EC2 security groups that are associated with this cache security group. *

* * @param eC2SecurityGroups * A list of Amazon EC2 security groups that are associated with this cache security group. */ public void setEC2SecurityGroups(java.util.Collection eC2SecurityGroups) { if (eC2SecurityGroups == null) { this.eC2SecurityGroups = null; return; } this.eC2SecurityGroups = new com.amazonaws.internal.SdkInternalList(eC2SecurityGroups); } /** *

* A list of Amazon EC2 security groups that are associated with this cache security group. *

*

* 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 * A list of Amazon EC2 security groups that are associated with this cache security group. * @return Returns a reference to this object so that method calls can be chained together. */ public CacheSecurityGroup 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; } /** *

* A list of Amazon EC2 security groups that are associated with this cache security group. *

* * @param eC2SecurityGroups * A list of Amazon EC2 security groups that are associated with this cache security group. * @return Returns a reference to this object so that method calls can be chained together. */ public CacheSecurityGroup withEC2SecurityGroups(java.util.Collection eC2SecurityGroups) { setEC2SecurityGroups(eC2SecurityGroups); return this; } /** *

* The ARN of the cache security group, *

* * @param aRN * The ARN of the cache security group, */ public void setARN(String aRN) { this.aRN = aRN; } /** *

* The ARN of the cache security group, *

* * @return The ARN of the cache security group, */ public String getARN() { return this.aRN; } /** *

* The ARN of the cache security group, *

* * @param aRN * The ARN of the cache security group, * @return Returns a reference to this object so that method calls can be chained together. */ public CacheSecurityGroup withARN(String aRN) { setARN(aRN); 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 (getCacheSecurityGroupName() != null) sb.append("CacheSecurityGroupName: ").append(getCacheSecurityGroupName()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getEC2SecurityGroups() != null) sb.append("EC2SecurityGroups: ").append(getEC2SecurityGroups()).append(","); if (getARN() != null) sb.append("ARN: ").append(getARN()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CacheSecurityGroup == false) return false; CacheSecurityGroup other = (CacheSecurityGroup) obj; if (other.getOwnerId() == null ^ this.getOwnerId() == null) return false; if (other.getOwnerId() != null && other.getOwnerId().equals(this.getOwnerId()) == false) return false; if (other.getCacheSecurityGroupName() == null ^ this.getCacheSecurityGroupName() == null) return false; if (other.getCacheSecurityGroupName() != null && other.getCacheSecurityGroupName().equals(this.getCacheSecurityGroupName()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == 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.getARN() == null ^ this.getARN() == null) return false; if (other.getARN() != null && other.getARN().equals(this.getARN()) == 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 + ((getCacheSecurityGroupName() == null) ? 0 : getCacheSecurityGroupName().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getEC2SecurityGroups() == null) ? 0 : getEC2SecurityGroups().hashCode()); hashCode = prime * hashCode + ((getARN() == null) ? 0 : getARN().hashCode()); return hashCode; } @Override public CacheSecurityGroup clone() { try { return (CacheSecurityGroup) 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