software.amazon.awssdk.services.elasticache.model.DeleteCacheSubnetGroupRequest Maven / Gradle / Ivy
Show all versions of elasticache Show documentation
/*
* Copyright 2012-2017 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 software.amazon.awssdk.services.elasticache.model;
import javax.annotation.Generated;
import software.amazon.awssdk.AmazonWebServiceRequest;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* Represents the input of a DeleteCacheSubnetGroup
operation.
*
*/
@Generated("software.amazon.awssdk:codegen")
public class DeleteCacheSubnetGroupRequest extends AmazonWebServiceRequest implements
ToCopyableBuilder {
private final String cacheSubnetGroupName;
private DeleteCacheSubnetGroupRequest(BuilderImpl builder) {
this.cacheSubnetGroupName = builder.cacheSubnetGroupName;
}
/**
*
* The name of the cache subnet group to delete.
*
*
* Constraints: Must contain no more than 255 alphanumeric characters or hyphens.
*
*
* @return The name of the cache subnet group to delete.
*
* Constraints: Must contain no more than 255 alphanumeric characters or hyphens.
*/
public String cacheSubnetGroupName() {
return cacheSubnetGroupName;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + ((cacheSubnetGroupName() == null) ? 0 : cacheSubnetGroupName().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof DeleteCacheSubnetGroupRequest)) {
return false;
}
DeleteCacheSubnetGroupRequest other = (DeleteCacheSubnetGroupRequest) obj;
if (other.cacheSubnetGroupName() == null ^ this.cacheSubnetGroupName() == null) {
return false;
}
if (other.cacheSubnetGroupName() != null && !other.cacheSubnetGroupName().equals(this.cacheSubnetGroupName())) {
return false;
}
return true;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (cacheSubnetGroupName() != null) {
sb.append("CacheSubnetGroupName: ").append(cacheSubnetGroupName()).append(",");
}
sb.append("}");
return sb.toString();
}
public interface Builder extends CopyableBuilder {
/**
*
* The name of the cache subnet group to delete.
*
*
* Constraints: Must contain no more than 255 alphanumeric characters or hyphens.
*
*
* @param cacheSubnetGroupName
* The name of the cache subnet group to delete.
*
* Constraints: Must contain no more than 255 alphanumeric characters or hyphens.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder cacheSubnetGroupName(String cacheSubnetGroupName);
}
private static final class BuilderImpl implements Builder {
private String cacheSubnetGroupName;
private BuilderImpl() {
}
private BuilderImpl(DeleteCacheSubnetGroupRequest model) {
setCacheSubnetGroupName(model.cacheSubnetGroupName);
}
public final String getCacheSubnetGroupName() {
return cacheSubnetGroupName;
}
@Override
public final Builder cacheSubnetGroupName(String cacheSubnetGroupName) {
this.cacheSubnetGroupName = cacheSubnetGroupName;
return this;
}
public final void setCacheSubnetGroupName(String cacheSubnetGroupName) {
this.cacheSubnetGroupName = cacheSubnetGroupName;
}
@Override
public DeleteCacheSubnetGroupRequest build() {
return new DeleteCacheSubnetGroupRequest(this);
}
}
}