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

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

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-2016 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;

/**
 * 

* Describes an individual setting that controls some aspect of ElastiCache * behavior. *

*/ public class Parameter implements Serializable, Cloneable { /** *

* The name of the parameter. *

*/ private String parameterName; /** *

* The value of the parameter. *

*/ private String parameterValue; /** *

* A description of the parameter. *

*/ private String description; /** *

* The source of the parameter. *

*/ private String source; /** *

* The valid data type for the parameter. *

*/ private String dataType; /** *

* The valid range of values for the parameter. *

*/ private String allowedValues; /** *

* Indicates whether (true) or not (false) the * parameter can be modified. Some parameters have security or operational * implications that prevent them from being changed. *

*/ private Boolean isModifiable; /** *

* The earliest cache engine version to which the parameter can apply. *

*/ private String minimumEngineVersion; /** *

* ChangeType indicates whether a change to the parameter will be applied * immediately or requires a reboot for the change to be applied. You can * force a reboot or wait until the next maintenance window's reboot. For * more information, see Rebooting a Cluster. *

*/ private String changeType; /** *

* The name of the parameter. *

* * @param parameterName * The name of the parameter. */ public void setParameterName(String parameterName) { this.parameterName = parameterName; } /** *

* The name of the parameter. *

* * @return The name of the parameter. */ public String getParameterName() { return this.parameterName; } /** *

* The name of the parameter. *

* * @param parameterName * The name of the parameter. * @return Returns a reference to this object so that method calls can be * chained together. */ public Parameter withParameterName(String parameterName) { setParameterName(parameterName); return this; } /** *

* The value of the parameter. *

* * @param parameterValue * The value of the parameter. */ public void setParameterValue(String parameterValue) { this.parameterValue = parameterValue; } /** *

* The value of the parameter. *

* * @return The value of the parameter. */ public String getParameterValue() { return this.parameterValue; } /** *

* The value of the parameter. *

* * @param parameterValue * The value of the parameter. * @return Returns a reference to this object so that method calls can be * chained together. */ public Parameter withParameterValue(String parameterValue) { setParameterValue(parameterValue); return this; } /** *

* A description of the parameter. *

* * @param description * A description of the parameter. */ public void setDescription(String description) { this.description = description; } /** *

* A description of the parameter. *

* * @return A description of the parameter. */ public String getDescription() { return this.description; } /** *

* A description of the parameter. *

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

* The source of the parameter. *

* * @param source * The source of the parameter. */ public void setSource(String source) { this.source = source; } /** *

* The source of the parameter. *

* * @return The source of the parameter. */ public String getSource() { return this.source; } /** *

* The source of the parameter. *

* * @param source * The source of the parameter. * @return Returns a reference to this object so that method calls can be * chained together. */ public Parameter withSource(String source) { setSource(source); return this; } /** *

* The valid data type for the parameter. *

* * @param dataType * The valid data type for the parameter. */ public void setDataType(String dataType) { this.dataType = dataType; } /** *

* The valid data type for the parameter. *

* * @return The valid data type for the parameter. */ public String getDataType() { return this.dataType; } /** *

* The valid data type for the parameter. *

* * @param dataType * The valid data type for the parameter. * @return Returns a reference to this object so that method calls can be * chained together. */ public Parameter withDataType(String dataType) { setDataType(dataType); return this; } /** *

* The valid range of values for the parameter. *

* * @param allowedValues * The valid range of values for the parameter. */ public void setAllowedValues(String allowedValues) { this.allowedValues = allowedValues; } /** *

* The valid range of values for the parameter. *

* * @return The valid range of values for the parameter. */ public String getAllowedValues() { return this.allowedValues; } /** *

* The valid range of values for the parameter. *

* * @param allowedValues * The valid range of values for the parameter. * @return Returns a reference to this object so that method calls can be * chained together. */ public Parameter withAllowedValues(String allowedValues) { setAllowedValues(allowedValues); return this; } /** *

* Indicates whether (true) or not (false) the * parameter can be modified. Some parameters have security or operational * implications that prevent them from being changed. *

* * @param isModifiable * Indicates whether (true) or not (false) * the parameter can be modified. Some parameters have security or * operational implications that prevent them from being changed. */ public void setIsModifiable(Boolean isModifiable) { this.isModifiable = isModifiable; } /** *

* Indicates whether (true) or not (false) the * parameter can be modified. Some parameters have security or operational * implications that prevent them from being changed. *

* * @return Indicates whether (true) or not (false) * the parameter can be modified. Some parameters have security or * operational implications that prevent them from being changed. */ public Boolean getIsModifiable() { return this.isModifiable; } /** *

* Indicates whether (true) or not (false) the * parameter can be modified. Some parameters have security or operational * implications that prevent them from being changed. *

* * @param isModifiable * Indicates whether (true) or not (false) * the parameter can be modified. Some parameters have security or * operational implications that prevent them from being changed. * @return Returns a reference to this object so that method calls can be * chained together. */ public Parameter withIsModifiable(Boolean isModifiable) { setIsModifiable(isModifiable); return this; } /** *

* Indicates whether (true) or not (false) the * parameter can be modified. Some parameters have security or operational * implications that prevent them from being changed. *

* * @return Indicates whether (true) or not (false) * the parameter can be modified. Some parameters have security or * operational implications that prevent them from being changed. */ public Boolean isModifiable() { return this.isModifiable; } /** *

* The earliest cache engine version to which the parameter can apply. *

* * @param minimumEngineVersion * The earliest cache engine version to which the parameter can * apply. */ public void setMinimumEngineVersion(String minimumEngineVersion) { this.minimumEngineVersion = minimumEngineVersion; } /** *

* The earliest cache engine version to which the parameter can apply. *

* * @return The earliest cache engine version to which the parameter can * apply. */ public String getMinimumEngineVersion() { return this.minimumEngineVersion; } /** *

* The earliest cache engine version to which the parameter can apply. *

* * @param minimumEngineVersion * The earliest cache engine version to which the parameter can * apply. * @return Returns a reference to this object so that method calls can be * chained together. */ public Parameter withMinimumEngineVersion(String minimumEngineVersion) { setMinimumEngineVersion(minimumEngineVersion); return this; } /** *

* ChangeType indicates whether a change to the parameter will be applied * immediately or requires a reboot for the change to be applied. You can * force a reboot or wait until the next maintenance window's reboot. For * more information, see Rebooting a Cluster. *

* * @param changeType * ChangeType indicates whether a change to the parameter will be * applied immediately or requires a reboot for the change to be * applied. You can force a reboot or wait until the next maintenance * window's reboot. For more information, see Rebooting a Cluster. * @see ChangeType */ public void setChangeType(String changeType) { this.changeType = changeType; } /** *

* ChangeType indicates whether a change to the parameter will be applied * immediately or requires a reboot for the change to be applied. You can * force a reboot or wait until the next maintenance window's reboot. For * more information, see Rebooting a Cluster. *

* * @return ChangeType indicates whether a change to the parameter will be * applied immediately or requires a reboot for the change to be * applied. You can force a reboot or wait until the next * maintenance window's reboot. For more information, see Rebooting a Cluster. * @see ChangeType */ public String getChangeType() { return this.changeType; } /** *

* ChangeType indicates whether a change to the parameter will be applied * immediately or requires a reboot for the change to be applied. You can * force a reboot or wait until the next maintenance window's reboot. For * more information, see Rebooting a Cluster. *

* * @param changeType * ChangeType indicates whether a change to the parameter will be * applied immediately or requires a reboot for the change to be * applied. You can force a reboot or wait until the next maintenance * window's reboot. For more information, see Rebooting a Cluster. * @return Returns a reference to this object so that method calls can be * chained together. * @see ChangeType */ public Parameter withChangeType(String changeType) { setChangeType(changeType); return this; } /** *

* ChangeType indicates whether a change to the parameter will be applied * immediately or requires a reboot for the change to be applied. You can * force a reboot or wait until the next maintenance window's reboot. For * more information, see Rebooting a Cluster. *

* * @param changeType * ChangeType indicates whether a change to the parameter will be * applied immediately or requires a reboot for the change to be * applied. You can force a reboot or wait until the next maintenance * window's reboot. For more information, see Rebooting a Cluster. * @see ChangeType */ public void setChangeType(ChangeType changeType) { this.changeType = changeType.toString(); } /** *

* ChangeType indicates whether a change to the parameter will be applied * immediately or requires a reboot for the change to be applied. You can * force a reboot or wait until the next maintenance window's reboot. For * more information, see Rebooting a Cluster. *

* * @param changeType * ChangeType indicates whether a change to the parameter will be * applied immediately or requires a reboot for the change to be * applied. You can force a reboot or wait until the next maintenance * window's reboot. For more information, see Rebooting a Cluster. * @return Returns a reference to this object so that method calls can be * chained together. * @see ChangeType */ public Parameter withChangeType(ChangeType changeType) { setChangeType(changeType); return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getParameterName() != null) sb.append("ParameterName: " + getParameterName() + ","); if (getParameterValue() != null) sb.append("ParameterValue: " + getParameterValue() + ","); if (getDescription() != null) sb.append("Description: " + getDescription() + ","); if (getSource() != null) sb.append("Source: " + getSource() + ","); if (getDataType() != null) sb.append("DataType: " + getDataType() + ","); if (getAllowedValues() != null) sb.append("AllowedValues: " + getAllowedValues() + ","); if (getIsModifiable() != null) sb.append("IsModifiable: " + getIsModifiable() + ","); if (getMinimumEngineVersion() != null) sb.append("MinimumEngineVersion: " + getMinimumEngineVersion() + ","); if (getChangeType() != null) sb.append("ChangeType: " + getChangeType()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Parameter == false) return false; Parameter other = (Parameter) obj; if (other.getParameterName() == null ^ this.getParameterName() == null) return false; if (other.getParameterName() != null && other.getParameterName().equals(this.getParameterName()) == false) return false; if (other.getParameterValue() == null ^ this.getParameterValue() == null) return false; if (other.getParameterValue() != null && other.getParameterValue().equals(this.getParameterValue()) == 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.getSource() == null ^ this.getSource() == null) return false; if (other.getSource() != null && other.getSource().equals(this.getSource()) == false) return false; if (other.getDataType() == null ^ this.getDataType() == null) return false; if (other.getDataType() != null && other.getDataType().equals(this.getDataType()) == false) return false; if (other.getAllowedValues() == null ^ this.getAllowedValues() == null) return false; if (other.getAllowedValues() != null && other.getAllowedValues().equals(this.getAllowedValues()) == false) return false; if (other.getIsModifiable() == null ^ this.getIsModifiable() == null) return false; if (other.getIsModifiable() != null && other.getIsModifiable().equals(this.getIsModifiable()) == false) return false; if (other.getMinimumEngineVersion() == null ^ this.getMinimumEngineVersion() == null) return false; if (other.getMinimumEngineVersion() != null && other.getMinimumEngineVersion().equals( this.getMinimumEngineVersion()) == false) return false; if (other.getChangeType() == null ^ this.getChangeType() == null) return false; if (other.getChangeType() != null && other.getChangeType().equals(this.getChangeType()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getParameterName() == null) ? 0 : getParameterName() .hashCode()); hashCode = prime * hashCode + ((getParameterValue() == null) ? 0 : getParameterValue() .hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getSource() == null) ? 0 : getSource().hashCode()); hashCode = prime * hashCode + ((getDataType() == null) ? 0 : getDataType().hashCode()); hashCode = prime * hashCode + ((getAllowedValues() == null) ? 0 : getAllowedValues() .hashCode()); hashCode = prime * hashCode + ((getIsModifiable() == null) ? 0 : getIsModifiable() .hashCode()); hashCode = prime * hashCode + ((getMinimumEngineVersion() == null) ? 0 : getMinimumEngineVersion().hashCode()); hashCode = prime * hashCode + ((getChangeType() == null) ? 0 : getChangeType().hashCode()); return hashCode; } @Override public Parameter clone() { try { return (Parameter) 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