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

com.amazonaws.services.costexplorer.model.MemoryDBInstanceDetails 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

The newest version!
/*
 * Copyright 2020-2025 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 MemoryDB reservations that Amazon Web Services recommends that you purchase. *

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

* The instance family of the recommended reservation. *

*/ private String family; /** *

* The node type of the recommended reservation. *

*/ private String nodeType; /** *

* The Amazon Web Services Region of the recommended reservation. *

*/ private String region; /** *

* Determines whether the recommendation is for a current generation instance. *

*/ private Boolean currentGeneration; /** *

* Determines 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 MemoryDBInstanceDetails withFamily(String family) { setFamily(family); return this; } /** *

* The node type of the recommended reservation. *

* * @param nodeType * The node type of the recommended reservation. */ public void setNodeType(String nodeType) { this.nodeType = nodeType; } /** *

* The node type of the recommended reservation. *

* * @return The node type of the recommended reservation. */ public String getNodeType() { return this.nodeType; } /** *

* The node type of the recommended reservation. *

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

* The Amazon Web Services Region of the recommended reservation. *

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

* The Amazon Web Services Region of the recommended reservation. *

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

* The Amazon Web Services Region of the recommended reservation. *

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

* Determines whether the recommendation is for a current generation instance. *

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

* Determines whether the recommendation is for a current generation instance. *

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

* Determines whether the recommendation is for a current generation instance. *

* * @param currentGeneration * Determines 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 MemoryDBInstanceDetails withCurrentGeneration(Boolean currentGeneration) { setCurrentGeneration(currentGeneration); return this; } /** *

* Determines whether the recommendation is for a current generation instance. *

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

* Determines whether the recommended reservation is size flexible. *

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

* Determines whether the recommended reservation is size flexible. *

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

* Determines whether the recommended reservation is size flexible. *

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

* Determines whether the recommended reservation is size flexible. *

* * @return Determines 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 (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 MemoryDBInstanceDetails == false) return false; MemoryDBInstanceDetails other = (MemoryDBInstanceDetails) 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.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 + ((getCurrentGeneration() == null) ? 0 : getCurrentGeneration().hashCode()); hashCode = prime * hashCode + ((getSizeFlexEligible() == null) ? 0 : getSizeFlexEligible().hashCode()); return hashCode; } @Override public MemoryDBInstanceDetails clone() { try { return (MemoryDBInstanceDetails) 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.MemoryDBInstanceDetailsMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy