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

com.amazonaws.services.costexplorer.model.ESInstanceDetails 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 Amazon OpenSearch Service reservations that Amazon Web Services recommends that you purchase. *

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

* The class of instance that Amazon Web Services recommends. *

*/ private String instanceClass; /** *

* The size of instance that Amazon Web Services recommends. *

*/ private String instanceSize; /** *

* 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 class of instance that Amazon Web Services recommends. *

* * @param instanceClass * The class of instance that Amazon Web Services recommends. */ public void setInstanceClass(String instanceClass) { this.instanceClass = instanceClass; } /** *

* The class of instance that Amazon Web Services recommends. *

* * @return The class of instance that Amazon Web Services recommends. */ public String getInstanceClass() { return this.instanceClass; } /** *

* The class of instance that Amazon Web Services recommends. *

* * @param instanceClass * The class of instance that Amazon Web Services recommends. * @return Returns a reference to this object so that method calls can be chained together. */ public ESInstanceDetails withInstanceClass(String instanceClass) { setInstanceClass(instanceClass); return this; } /** *

* The size of instance that Amazon Web Services recommends. *

* * @param instanceSize * The size of instance that Amazon Web Services recommends. */ public void setInstanceSize(String instanceSize) { this.instanceSize = instanceSize; } /** *

* The size of instance that Amazon Web Services recommends. *

* * @return The size of instance that Amazon Web Services recommends. */ public String getInstanceSize() { return this.instanceSize; } /** *

* The size of instance that Amazon Web Services recommends. *

* * @param instanceSize * The size of instance that Amazon Web Services recommends. * @return Returns a reference to this object so that method calls can be chained together. */ public ESInstanceDetails withInstanceSize(String instanceSize) { setInstanceSize(instanceSize); 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 ESInstanceDetails 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 ESInstanceDetails 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 ESInstanceDetails 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 (getInstanceClass() != null) sb.append("InstanceClass: ").append(getInstanceClass()).append(","); if (getInstanceSize() != null) sb.append("InstanceSize: ").append(getInstanceSize()).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 ESInstanceDetails == false) return false; ESInstanceDetails other = (ESInstanceDetails) obj; if (other.getInstanceClass() == null ^ this.getInstanceClass() == null) return false; if (other.getInstanceClass() != null && other.getInstanceClass().equals(this.getInstanceClass()) == false) return false; if (other.getInstanceSize() == null ^ this.getInstanceSize() == null) return false; if (other.getInstanceSize() != null && other.getInstanceSize().equals(this.getInstanceSize()) == 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 + ((getInstanceClass() == null) ? 0 : getInstanceClass().hashCode()); hashCode = prime * hashCode + ((getInstanceSize() == null) ? 0 : getInstanceSize().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 ESInstanceDetails clone() { try { return (ESInstanceDetails) 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.ESInstanceDetailsMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy