
com.amazonaws.services.costexplorer.model.RDSInstanceDetails Maven / Gradle / Ivy
Show all versions of aws-java-sdk-costexplorer Show documentation
/*
* 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 RDS reservations that Amazon Web Services recommends that you purchase.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class RDSInstanceDetails implements Serializable, Cloneable, StructuredPojo {
/**
*
* The instance family of the recommended reservation.
*
*/
private String family;
/**
*
* The type of instance that Amazon Web Services recommends.
*
*/
private String instanceType;
/**
*
* The Amazon Web Services Region of the recommended reservation.
*
*/
private String region;
/**
*
* The database engine that the recommended reservation supports.
*
*/
private String databaseEngine;
/**
*
* The database edition that the recommended reservation supports.
*
*/
private String databaseEdition;
/**
*
* Determines whether the recommendation is for a reservation in a single Availability Zone or a reservation with a
* backup in a second Availability Zone.
*
*/
private String deploymentOption;
/**
*
* The license model that the recommended reservation supports.
*
*/
private String licenseModel;
/**
*
* 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 RDSInstanceDetails withFamily(String family) {
setFamily(family);
return this;
}
/**
*
* The type of instance that Amazon Web Services recommends.
*
*
* @param instanceType
* The type of instance that Amazon Web Services recommends.
*/
public void setInstanceType(String instanceType) {
this.instanceType = instanceType;
}
/**
*
* The type of instance that Amazon Web Services recommends.
*
*
* @return The type of instance that Amazon Web Services recommends.
*/
public String getInstanceType() {
return this.instanceType;
}
/**
*
* The type of instance that Amazon Web Services recommends.
*
*
* @param instanceType
* The type of instance that Amazon Web Services recommends.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RDSInstanceDetails withInstanceType(String instanceType) {
setInstanceType(instanceType);
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 RDSInstanceDetails withRegion(String region) {
setRegion(region);
return this;
}
/**
*
* The database engine that the recommended reservation supports.
*
*
* @param databaseEngine
* The database engine that the recommended reservation supports.
*/
public void setDatabaseEngine(String databaseEngine) {
this.databaseEngine = databaseEngine;
}
/**
*
* The database engine that the recommended reservation supports.
*
*
* @return The database engine that the recommended reservation supports.
*/
public String getDatabaseEngine() {
return this.databaseEngine;
}
/**
*
* The database engine that the recommended reservation supports.
*
*
* @param databaseEngine
* The database engine that the recommended reservation supports.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RDSInstanceDetails withDatabaseEngine(String databaseEngine) {
setDatabaseEngine(databaseEngine);
return this;
}
/**
*
* The database edition that the recommended reservation supports.
*
*
* @param databaseEdition
* The database edition that the recommended reservation supports.
*/
public void setDatabaseEdition(String databaseEdition) {
this.databaseEdition = databaseEdition;
}
/**
*
* The database edition that the recommended reservation supports.
*
*
* @return The database edition that the recommended reservation supports.
*/
public String getDatabaseEdition() {
return this.databaseEdition;
}
/**
*
* The database edition that the recommended reservation supports.
*
*
* @param databaseEdition
* The database edition that the recommended reservation supports.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RDSInstanceDetails withDatabaseEdition(String databaseEdition) {
setDatabaseEdition(databaseEdition);
return this;
}
/**
*
* Determines whether the recommendation is for a reservation in a single Availability Zone or a reservation with a
* backup in a second Availability Zone.
*
*
* @param deploymentOption
* Determines whether the recommendation is for a reservation in a single Availability Zone or a reservation
* with a backup in a second Availability Zone.
*/
public void setDeploymentOption(String deploymentOption) {
this.deploymentOption = deploymentOption;
}
/**
*
* Determines whether the recommendation is for a reservation in a single Availability Zone or a reservation with a
* backup in a second Availability Zone.
*
*
* @return Determines whether the recommendation is for a reservation in a single Availability Zone or a reservation
* with a backup in a second Availability Zone.
*/
public String getDeploymentOption() {
return this.deploymentOption;
}
/**
*
* Determines whether the recommendation is for a reservation in a single Availability Zone or a reservation with a
* backup in a second Availability Zone.
*
*
* @param deploymentOption
* Determines whether the recommendation is for a reservation in a single Availability Zone or a reservation
* with a backup in a second Availability Zone.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RDSInstanceDetails withDeploymentOption(String deploymentOption) {
setDeploymentOption(deploymentOption);
return this;
}
/**
*
* The license model that the recommended reservation supports.
*
*
* @param licenseModel
* The license model that the recommended reservation supports.
*/
public void setLicenseModel(String licenseModel) {
this.licenseModel = licenseModel;
}
/**
*
* The license model that the recommended reservation supports.
*
*
* @return The license model that the recommended reservation supports.
*/
public String getLicenseModel() {
return this.licenseModel;
}
/**
*
* The license model that the recommended reservation supports.
*
*
* @param licenseModel
* The license model that the recommended reservation supports.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RDSInstanceDetails withLicenseModel(String licenseModel) {
setLicenseModel(licenseModel);
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 RDSInstanceDetails 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 RDSInstanceDetails 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 (getInstanceType() != null)
sb.append("InstanceType: ").append(getInstanceType()).append(",");
if (getRegion() != null)
sb.append("Region: ").append(getRegion()).append(",");
if (getDatabaseEngine() != null)
sb.append("DatabaseEngine: ").append(getDatabaseEngine()).append(",");
if (getDatabaseEdition() != null)
sb.append("DatabaseEdition: ").append(getDatabaseEdition()).append(",");
if (getDeploymentOption() != null)
sb.append("DeploymentOption: ").append(getDeploymentOption()).append(",");
if (getLicenseModel() != null)
sb.append("LicenseModel: ").append(getLicenseModel()).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 RDSInstanceDetails == false)
return false;
RDSInstanceDetails other = (RDSInstanceDetails) obj;
if (other.getFamily() == null ^ this.getFamily() == null)
return false;
if (other.getFamily() != null && other.getFamily().equals(this.getFamily()) == false)
return false;
if (other.getInstanceType() == null ^ this.getInstanceType() == null)
return false;
if (other.getInstanceType() != null && other.getInstanceType().equals(this.getInstanceType()) == 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.getDatabaseEngine() == null ^ this.getDatabaseEngine() == null)
return false;
if (other.getDatabaseEngine() != null && other.getDatabaseEngine().equals(this.getDatabaseEngine()) == false)
return false;
if (other.getDatabaseEdition() == null ^ this.getDatabaseEdition() == null)
return false;
if (other.getDatabaseEdition() != null && other.getDatabaseEdition().equals(this.getDatabaseEdition()) == false)
return false;
if (other.getDeploymentOption() == null ^ this.getDeploymentOption() == null)
return false;
if (other.getDeploymentOption() != null && other.getDeploymentOption().equals(this.getDeploymentOption()) == false)
return false;
if (other.getLicenseModel() == null ^ this.getLicenseModel() == null)
return false;
if (other.getLicenseModel() != null && other.getLicenseModel().equals(this.getLicenseModel()) == 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 + ((getInstanceType() == null) ? 0 : getInstanceType().hashCode());
hashCode = prime * hashCode + ((getRegion() == null) ? 0 : getRegion().hashCode());
hashCode = prime * hashCode + ((getDatabaseEngine() == null) ? 0 : getDatabaseEngine().hashCode());
hashCode = prime * hashCode + ((getDatabaseEdition() == null) ? 0 : getDatabaseEdition().hashCode());
hashCode = prime * hashCode + ((getDeploymentOption() == null) ? 0 : getDeploymentOption().hashCode());
hashCode = prime * hashCode + ((getLicenseModel() == null) ? 0 : getLicenseModel().hashCode());
hashCode = prime * hashCode + ((getCurrentGeneration() == null) ? 0 : getCurrentGeneration().hashCode());
hashCode = prime * hashCode + ((getSizeFlexEligible() == null) ? 0 : getSizeFlexEligible().hashCode());
return hashCode;
}
@Override
public RDSInstanceDetails clone() {
try {
return (RDSInstanceDetails) 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.RDSInstanceDetailsMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}