/* * 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 CreateCacheSubnetGroup
operation.
*
* A 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 for the cache subnet group. *
*/ private String cacheSubnetGroupDescription; /** ** A list of VPC subnet IDs for the cache subnet group. *
*/ private com.amazonaws.internal.SdkInternalList* A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag * value, although null is accepted. *
*/ private com.amazonaws.internal.SdkInternalList* A 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;
}
/**
*
* A 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;
}
/**
*
* A 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 CreateCacheSubnetGroupRequest withCacheSubnetGroupName(String cacheSubnetGroupName) {
setCacheSubnetGroupName(cacheSubnetGroupName);
return this;
}
/**
*
* A description for the cache subnet group. *
* * @param cacheSubnetGroupDescription * A description for the cache subnet group. */ public void setCacheSubnetGroupDescription(String cacheSubnetGroupDescription) { this.cacheSubnetGroupDescription = cacheSubnetGroupDescription; } /** ** A description for the cache subnet group. *
* * @return A description for the cache subnet group. */ public String getCacheSubnetGroupDescription() { return this.cacheSubnetGroupDescription; } /** ** A description for the cache subnet group. *
* * @param cacheSubnetGroupDescription * A description for the cache subnet group. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateCacheSubnetGroupRequest withCacheSubnetGroupDescription(String cacheSubnetGroupDescription) { setCacheSubnetGroupDescription(cacheSubnetGroupDescription); return this; } /** ** A list of VPC subnet IDs for the cache subnet group. *
* * @return A list of VPC subnet IDs for the cache subnet group. */ public java.util.List* A list of VPC subnet IDs for the cache subnet group. *
* * @param subnetIds * A list of VPC subnet IDs for the cache subnet group. */ public void setSubnetIds(java.util.Collection* A list of VPC 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 * A list of VPC subnet IDs for the cache subnet group. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateCacheSubnetGroupRequest withSubnetIds(String... subnetIds) { if (this.subnetIds == null) { setSubnetIds(new com.amazonaws.internal.SdkInternalList* A list of VPC subnet IDs for the cache subnet group. *
* * @param subnetIds * A list of VPC subnet IDs for the cache subnet group. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateCacheSubnetGroupRequest withSubnetIds(java.util.Collection* A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag * value, although null is accepted. *
* * @return A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by * a tag value, although null is accepted. */ public java.util.List* A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag * value, although null is accepted. *
* * @param tags * A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a * tag value, although null is accepted. */ public void setTags(java.util.Collection* A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag * value, although null is accepted. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *
* * @param tags * A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a * tag value, although null is accepted. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateCacheSubnetGroupRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList* A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag * value, although null is accepted. *
* * @param tags * A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a * tag value, although null is accepted. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateCacheSubnetGroupRequest withTags(java.util.Collection