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

com.amazonaws.services.costexplorer.model.ElastiCacheInstanceDetails Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2015-2020 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.costexplorer.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Details about the Amazon ElastiCache instances that AWS recommends that you purchase. *

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

* The instance family of the recommended reservation. *

*/ private String family; /** *

* The type of node that AWS recommends. *

*/ private String nodeType; /** *

* The AWS Region of the recommended reservation. *

*/ private String region; /** *

* The description of the recommended reservation. *

*/ private String productDescription; /** *

* Whether the recommendation is for a current generation instance. *

*/ private Boolean currentGeneration; /** *

* Whether the recommended reservation is size flexible. *

*/ private Boolean sizeFlexEligible; /** *

* The instance family of the recommended reservation. *

* * @param family * The instance family of the recommended reservation. */ public void setFamily(String family) { this.family = family; } /** *

* The instance family of the recommended reservation. *

* * @return The instance family of the recommended reservation. */ public String getFamily() { return this.family; } /** *

* The instance family of the recommended reservation. *

* * @param family * The instance family of the recommended reservation. * @return Returns a reference to this object so that method calls can be chained together. */ public ElastiCacheInstanceDetails withFamily(String family) { setFamily(family); return this; } /** *

* The type of node that AWS recommends. *

* * @param nodeType * The type of node that AWS recommends. */ public void setNodeType(String nodeType) { this.nodeType = nodeType; } /** *

* The type of node that AWS recommends. *

* * @return The type of node that AWS recommends. */ public String getNodeType() { return this.nodeType; } /** *

* The type of node that AWS recommends. *

* * @param nodeType * The type of node that AWS recommends. * @return Returns a reference to this object so that method calls can be chained together. */ public ElastiCacheInstanceDetails withNodeType(String nodeType) { setNodeType(nodeType); return this; } /** *

* The AWS Region of the recommended reservation. *

* * @param region * The AWS Region of the recommended reservation. */ public void setRegion(String region) { this.region = region; } /** *

* The AWS Region of the recommended reservation. *

* * @return The AWS Region of the recommended reservation. */ public String getRegion() { return this.region; } /** *

* The AWS Region of the recommended reservation. *

* * @param region * The AWS Region of the recommended reservation. * @return Returns a reference to this object so that method calls can be chained together. */ public ElastiCacheInstanceDetails withRegion(String region) { setRegion(region); return this; } /** *

* The description of the recommended reservation. *

* * @param productDescription * The description of the recommended reservation. */ public void setProductDescription(String productDescription) { this.productDescription = productDescription; } /** *

* The description of the recommended reservation. *

* * @return The description of the recommended reservation. */ public String getProductDescription() { return this.productDescription; } /** *

* The description of the recommended reservation. *

* * @param productDescription * The description of the recommended reservation. * @return Returns a reference to this object so that method calls can be chained together. */ public ElastiCacheInstanceDetails withProductDescription(String productDescription) { setProductDescription(productDescription); return this; } /** *

* Whether the recommendation is for a current generation instance. *

* * @param currentGeneration * Whether the recommendation is for a current generation instance. */ public void setCurrentGeneration(Boolean currentGeneration) { this.currentGeneration = currentGeneration; } /** *

* Whether the recommendation is for a current generation instance. *

* * @return Whether the recommendation is for a current generation instance. */ public Boolean getCurrentGeneration() { return this.currentGeneration; } /** *

* Whether the recommendation is for a current generation instance. *

* * @param currentGeneration * Whether the recommendation is for a current generation instance. * @return Returns a reference to this object so that method calls can be chained together. */ public ElastiCacheInstanceDetails withCurrentGeneration(Boolean currentGeneration) { setCurrentGeneration(currentGeneration); return this; } /** *

* Whether the recommendation is for a current generation instance. *

* * @return Whether the recommendation is for a current generation instance. */ public Boolean isCurrentGeneration() { return this.currentGeneration; } /** *

* Whether the recommended reservation is size flexible. *

* * @param sizeFlexEligible * Whether the recommended reservation is size flexible. */ public void setSizeFlexEligible(Boolean sizeFlexEligible) { this.sizeFlexEligible = sizeFlexEligible; } /** *

* Whether the recommended reservation is size flexible. *

* * @return Whether the recommended reservation is size flexible. */ public Boolean getSizeFlexEligible() { return this.sizeFlexEligible; } /** *

* Whether the recommended reservation is size flexible. *

* * @param sizeFlexEligible * Whether the recommended reservation is size flexible. * @return Returns a reference to this object so that method calls can be chained together. */ public ElastiCacheInstanceDetails withSizeFlexEligible(Boolean sizeFlexEligible) { setSizeFlexEligible(sizeFlexEligible); return this; } /** *

* Whether the recommended reservation is size flexible. *

* * @return Whether the recommended reservation is size flexible. */ public Boolean isSizeFlexEligible() { return this.sizeFlexEligible; } /** * 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 (getFamily() != null) sb.append("Family: ").append(getFamily()).append(","); if (getNodeType() != null) sb.append("NodeType: ").append(getNodeType()).append(","); if (getRegion() != null) sb.append("Region: ").append(getRegion()).append(","); if (getProductDescription() != null) sb.append("ProductDescription: ").append(getProductDescription()).append(","); if (getCurrentGeneration() != null) sb.append("CurrentGeneration: ").append(getCurrentGeneration()).append(","); if (getSizeFlexEligible() != null) sb.append("SizeFlexEligible: ").append(getSizeFlexEligible()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ElastiCacheInstanceDetails == false) return false; ElastiCacheInstanceDetails other = (ElastiCacheInstanceDetails) obj; if (other.getFamily() == null ^ this.getFamily() == null) return false; if (other.getFamily() != null && other.getFamily().equals(this.getFamily()) == false) return false; if (other.getNodeType() == null ^ this.getNodeType() == null) return false; if (other.getNodeType() != null && other.getNodeType().equals(this.getNodeType()) == false) return false; if (other.getRegion() == null ^ this.getRegion() == null) return false; if (other.getRegion() != null && other.getRegion().equals(this.getRegion()) == false) return false; if (other.getProductDescription() == null ^ this.getProductDescription() == null) return false; if (other.getProductDescription() != null && other.getProductDescription().equals(this.getProductDescription()) == false) return false; if (other.getCurrentGeneration() == null ^ this.getCurrentGeneration() == null) return false; if (other.getCurrentGeneration() != null && other.getCurrentGeneration().equals(this.getCurrentGeneration()) == false) return false; if (other.getSizeFlexEligible() == null ^ this.getSizeFlexEligible() == null) return false; if (other.getSizeFlexEligible() != null && other.getSizeFlexEligible().equals(this.getSizeFlexEligible()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getFamily() == null) ? 0 : getFamily().hashCode()); hashCode = prime * hashCode + ((getNodeType() == null) ? 0 : getNodeType().hashCode()); hashCode = prime * hashCode + ((getRegion() == null) ? 0 : getRegion().hashCode()); hashCode = prime * hashCode + ((getProductDescription() == null) ? 0 : getProductDescription().hashCode()); hashCode = prime * hashCode + ((getCurrentGeneration() == null) ? 0 : getCurrentGeneration().hashCode()); hashCode = prime * hashCode + ((getSizeFlexEligible() == null) ? 0 : getSizeFlexEligible().hashCode()); return hashCode; } @Override public ElastiCacheInstanceDetails clone() { try { return (ElastiCacheInstanceDetails) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.costexplorer.model.transform.ElastiCacheInstanceDetailsMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy