/* * 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.elasticache.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** *
* Represents the input of a ModifyCacheSubnetGroup
operation.
*
* The name for the cache subnet group. This value is stored as a lowercase string. *
** Constraints: Must contain no more than 255 alphanumeric characters or hyphens. *
*
* Example: mysubnetgroup
*
* A description of the cache subnet group. *
*/ private String cacheSubnetGroupDescription; /** ** The EC2 subnet IDs for the cache subnet group. *
*/ private com.amazonaws.internal.SdkInternalList* The name for the cache subnet group. This value is stored as a lowercase string. *
** Constraints: Must contain no more than 255 alphanumeric characters or hyphens. *
*
* Example: mysubnetgroup
*
* Constraints: Must contain no more than 255 alphanumeric characters or hyphens. *
*
* Example: mysubnetgroup
*/
public void setCacheSubnetGroupName(String cacheSubnetGroupName) {
this.cacheSubnetGroupName = cacheSubnetGroupName;
}
/**
*
* The name for the cache subnet group. This value is stored as a lowercase string. *
** Constraints: Must contain no more than 255 alphanumeric characters or hyphens. *
*
* Example: mysubnetgroup
*
* Constraints: Must contain no more than 255 alphanumeric characters or hyphens. *
*
* Example: mysubnetgroup
*/
public String getCacheSubnetGroupName() {
return this.cacheSubnetGroupName;
}
/**
*
* The name for the cache subnet group. This value is stored as a lowercase string. *
** Constraints: Must contain no more than 255 alphanumeric characters or hyphens. *
*
* Example: mysubnetgroup
*
* Constraints: Must contain no more than 255 alphanumeric characters or hyphens. *
*
* Example: mysubnetgroup
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyCacheSubnetGroupRequest withCacheSubnetGroupName(String cacheSubnetGroupName) {
setCacheSubnetGroupName(cacheSubnetGroupName);
return this;
}
/**
*
* A description of the cache subnet group. *
* * @param cacheSubnetGroupDescription * A description of the cache subnet group. */ public void setCacheSubnetGroupDescription(String cacheSubnetGroupDescription) { this.cacheSubnetGroupDescription = cacheSubnetGroupDescription; } /** ** A description of the cache subnet group. *
* * @return A description of the cache subnet group. */ public String getCacheSubnetGroupDescription() { return this.cacheSubnetGroupDescription; } /** ** A description of the cache subnet group. *
* * @param cacheSubnetGroupDescription * A description of the cache subnet group. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyCacheSubnetGroupRequest withCacheSubnetGroupDescription(String cacheSubnetGroupDescription) { setCacheSubnetGroupDescription(cacheSubnetGroupDescription); return this; } /** ** The EC2 subnet IDs for the cache subnet group. *
* * @return The EC2 subnet IDs for the cache subnet group. */ public java.util.List* The EC2 subnet IDs for the cache subnet group. *
* * @param subnetIds * The EC2 subnet IDs for the cache subnet group. */ public void setSubnetIds(java.util.Collection* The EC2 subnet IDs for the cache subnet group. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setSubnetIds(java.util.Collection)} or {@link #withSubnetIds(java.util.Collection)} if you want to * override the existing values. *
* * @param subnetIds * The EC2 subnet IDs for the cache subnet group. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyCacheSubnetGroupRequest withSubnetIds(String... subnetIds) { if (this.subnetIds == null) { setSubnetIds(new com.amazonaws.internal.SdkInternalList* The EC2 subnet IDs for the cache subnet group. *
* * @param subnetIds * The EC2 subnet IDs for the cache subnet group. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyCacheSubnetGroupRequest withSubnetIds(java.util.Collection