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

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

/**
 * 

* Recommendations to rightsize resources. *

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

* The account that this recommendation is for. *

*/ private String accountId; /** *

* Context regarding the current instance. *

*/ private CurrentInstance currentInstance; /** *

* A recommendation to either terminate or modify the resource. *

*/ private String rightsizingType; /** *

* The details for the modification recommendations. *

*/ private ModifyRecommendationDetail modifyRecommendationDetail; /** *

* The details for termination recommendations. *

*/ private TerminateRecommendationDetail terminateRecommendationDetail; /** *

* The list of possible reasons why the recommendation is generated, such as under- or over-utilization of specific * metrics (for example, CPU, Memory, Network). *

*/ private java.util.List findingReasonCodes; /** *

* The account that this recommendation is for. *

* * @param accountId * The account that this recommendation is for. */ public void setAccountId(String accountId) { this.accountId = accountId; } /** *

* The account that this recommendation is for. *

* * @return The account that this recommendation is for. */ public String getAccountId() { return this.accountId; } /** *

* The account that this recommendation is for. *

* * @param accountId * The account that this recommendation is for. * @return Returns a reference to this object so that method calls can be chained together. */ public RightsizingRecommendation withAccountId(String accountId) { setAccountId(accountId); return this; } /** *

* Context regarding the current instance. *

* * @param currentInstance * Context regarding the current instance. */ public void setCurrentInstance(CurrentInstance currentInstance) { this.currentInstance = currentInstance; } /** *

* Context regarding the current instance. *

* * @return Context regarding the current instance. */ public CurrentInstance getCurrentInstance() { return this.currentInstance; } /** *

* Context regarding the current instance. *

* * @param currentInstance * Context regarding the current instance. * @return Returns a reference to this object so that method calls can be chained together. */ public RightsizingRecommendation withCurrentInstance(CurrentInstance currentInstance) { setCurrentInstance(currentInstance); return this; } /** *

* A recommendation to either terminate or modify the resource. *

* * @param rightsizingType * A recommendation to either terminate or modify the resource. * @see RightsizingType */ public void setRightsizingType(String rightsizingType) { this.rightsizingType = rightsizingType; } /** *

* A recommendation to either terminate or modify the resource. *

* * @return A recommendation to either terminate or modify the resource. * @see RightsizingType */ public String getRightsizingType() { return this.rightsizingType; } /** *

* A recommendation to either terminate or modify the resource. *

* * @param rightsizingType * A recommendation to either terminate or modify the resource. * @return Returns a reference to this object so that method calls can be chained together. * @see RightsizingType */ public RightsizingRecommendation withRightsizingType(String rightsizingType) { setRightsizingType(rightsizingType); return this; } /** *

* A recommendation to either terminate or modify the resource. *

* * @param rightsizingType * A recommendation to either terminate or modify the resource. * @return Returns a reference to this object so that method calls can be chained together. * @see RightsizingType */ public RightsizingRecommendation withRightsizingType(RightsizingType rightsizingType) { this.rightsizingType = rightsizingType.toString(); return this; } /** *

* The details for the modification recommendations. *

* * @param modifyRecommendationDetail * The details for the modification recommendations. */ public void setModifyRecommendationDetail(ModifyRecommendationDetail modifyRecommendationDetail) { this.modifyRecommendationDetail = modifyRecommendationDetail; } /** *

* The details for the modification recommendations. *

* * @return The details for the modification recommendations. */ public ModifyRecommendationDetail getModifyRecommendationDetail() { return this.modifyRecommendationDetail; } /** *

* The details for the modification recommendations. *

* * @param modifyRecommendationDetail * The details for the modification recommendations. * @return Returns a reference to this object so that method calls can be chained together. */ public RightsizingRecommendation withModifyRecommendationDetail(ModifyRecommendationDetail modifyRecommendationDetail) { setModifyRecommendationDetail(modifyRecommendationDetail); return this; } /** *

* The details for termination recommendations. *

* * @param terminateRecommendationDetail * The details for termination recommendations. */ public void setTerminateRecommendationDetail(TerminateRecommendationDetail terminateRecommendationDetail) { this.terminateRecommendationDetail = terminateRecommendationDetail; } /** *

* The details for termination recommendations. *

* * @return The details for termination recommendations. */ public TerminateRecommendationDetail getTerminateRecommendationDetail() { return this.terminateRecommendationDetail; } /** *

* The details for termination recommendations. *

* * @param terminateRecommendationDetail * The details for termination recommendations. * @return Returns a reference to this object so that method calls can be chained together. */ public RightsizingRecommendation withTerminateRecommendationDetail(TerminateRecommendationDetail terminateRecommendationDetail) { setTerminateRecommendationDetail(terminateRecommendationDetail); return this; } /** *

* The list of possible reasons why the recommendation is generated, such as under- or over-utilization of specific * metrics (for example, CPU, Memory, Network). *

* * @return The list of possible reasons why the recommendation is generated, such as under- or over-utilization of * specific metrics (for example, CPU, Memory, Network). * @see FindingReasonCode */ public java.util.List getFindingReasonCodes() { return findingReasonCodes; } /** *

* The list of possible reasons why the recommendation is generated, such as under- or over-utilization of specific * metrics (for example, CPU, Memory, Network). *

* * @param findingReasonCodes * The list of possible reasons why the recommendation is generated, such as under- or over-utilization of * specific metrics (for example, CPU, Memory, Network). * @see FindingReasonCode */ public void setFindingReasonCodes(java.util.Collection findingReasonCodes) { if (findingReasonCodes == null) { this.findingReasonCodes = null; return; } this.findingReasonCodes = new java.util.ArrayList(findingReasonCodes); } /** *

* The list of possible reasons why the recommendation is generated, such as under- or over-utilization of specific * metrics (for example, CPU, Memory, Network). *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setFindingReasonCodes(java.util.Collection)} or {@link #withFindingReasonCodes(java.util.Collection)} if * you want to override the existing values. *

* * @param findingReasonCodes * The list of possible reasons why the recommendation is generated, such as under- or over-utilization of * specific metrics (for example, CPU, Memory, Network). * @return Returns a reference to this object so that method calls can be chained together. * @see FindingReasonCode */ public RightsizingRecommendation withFindingReasonCodes(String... findingReasonCodes) { if (this.findingReasonCodes == null) { setFindingReasonCodes(new java.util.ArrayList(findingReasonCodes.length)); } for (String ele : findingReasonCodes) { this.findingReasonCodes.add(ele); } return this; } /** *

* The list of possible reasons why the recommendation is generated, such as under- or over-utilization of specific * metrics (for example, CPU, Memory, Network). *

* * @param findingReasonCodes * The list of possible reasons why the recommendation is generated, such as under- or over-utilization of * specific metrics (for example, CPU, Memory, Network). * @return Returns a reference to this object so that method calls can be chained together. * @see FindingReasonCode */ public RightsizingRecommendation withFindingReasonCodes(java.util.Collection findingReasonCodes) { setFindingReasonCodes(findingReasonCodes); return this; } /** *

* The list of possible reasons why the recommendation is generated, such as under- or over-utilization of specific * metrics (for example, CPU, Memory, Network). *

* * @param findingReasonCodes * The list of possible reasons why the recommendation is generated, such as under- or over-utilization of * specific metrics (for example, CPU, Memory, Network). * @return Returns a reference to this object so that method calls can be chained together. * @see FindingReasonCode */ public RightsizingRecommendation withFindingReasonCodes(FindingReasonCode... findingReasonCodes) { java.util.ArrayList findingReasonCodesCopy = new java.util.ArrayList(findingReasonCodes.length); for (FindingReasonCode value : findingReasonCodes) { findingReasonCodesCopy.add(value.toString()); } if (getFindingReasonCodes() == null) { setFindingReasonCodes(findingReasonCodesCopy); } else { getFindingReasonCodes().addAll(findingReasonCodesCopy); } return this; } /** * 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 (getAccountId() != null) sb.append("AccountId: ").append(getAccountId()).append(","); if (getCurrentInstance() != null) sb.append("CurrentInstance: ").append(getCurrentInstance()).append(","); if (getRightsizingType() != null) sb.append("RightsizingType: ").append(getRightsizingType()).append(","); if (getModifyRecommendationDetail() != null) sb.append("ModifyRecommendationDetail: ").append(getModifyRecommendationDetail()).append(","); if (getTerminateRecommendationDetail() != null) sb.append("TerminateRecommendationDetail: ").append(getTerminateRecommendationDetail()).append(","); if (getFindingReasonCodes() != null) sb.append("FindingReasonCodes: ").append(getFindingReasonCodes()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof RightsizingRecommendation == false) return false; RightsizingRecommendation other = (RightsizingRecommendation) obj; if (other.getAccountId() == null ^ this.getAccountId() == null) return false; if (other.getAccountId() != null && other.getAccountId().equals(this.getAccountId()) == false) return false; if (other.getCurrentInstance() == null ^ this.getCurrentInstance() == null) return false; if (other.getCurrentInstance() != null && other.getCurrentInstance().equals(this.getCurrentInstance()) == false) return false; if (other.getRightsizingType() == null ^ this.getRightsizingType() == null) return false; if (other.getRightsizingType() != null && other.getRightsizingType().equals(this.getRightsizingType()) == false) return false; if (other.getModifyRecommendationDetail() == null ^ this.getModifyRecommendationDetail() == null) return false; if (other.getModifyRecommendationDetail() != null && other.getModifyRecommendationDetail().equals(this.getModifyRecommendationDetail()) == false) return false; if (other.getTerminateRecommendationDetail() == null ^ this.getTerminateRecommendationDetail() == null) return false; if (other.getTerminateRecommendationDetail() != null && other.getTerminateRecommendationDetail().equals(this.getTerminateRecommendationDetail()) == false) return false; if (other.getFindingReasonCodes() == null ^ this.getFindingReasonCodes() == null) return false; if (other.getFindingReasonCodes() != null && other.getFindingReasonCodes().equals(this.getFindingReasonCodes()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAccountId() == null) ? 0 : getAccountId().hashCode()); hashCode = prime * hashCode + ((getCurrentInstance() == null) ? 0 : getCurrentInstance().hashCode()); hashCode = prime * hashCode + ((getRightsizingType() == null) ? 0 : getRightsizingType().hashCode()); hashCode = prime * hashCode + ((getModifyRecommendationDetail() == null) ? 0 : getModifyRecommendationDetail().hashCode()); hashCode = prime * hashCode + ((getTerminateRecommendationDetail() == null) ? 0 : getTerminateRecommendationDetail().hashCode()); hashCode = prime * hashCode + ((getFindingReasonCodes() == null) ? 0 : getFindingReasonCodes().hashCode()); return hashCode; } @Override public RightsizingRecommendation clone() { try { return (RightsizingRecommendation) 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.RightsizingRecommendationMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy