
com.amazonaws.services.costexplorer.model.RootCause 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;
/**
*
* The combination of Amazon Web Service, linked account, linked account name, Region, and usage type where a cost
* anomaly is observed. The linked account name will only be available when the account name can be identified.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class RootCause implements Serializable, Cloneable, StructuredPojo {
/**
*
* The Amazon Web Service name that's associated with the cost anomaly.
*
*/
private String service;
/**
*
* The Amazon Web Services Region that's associated with the cost anomaly.
*
*/
private String region;
/**
*
* The member account value that's associated with the cost anomaly.
*
*/
private String linkedAccount;
/**
*
* The UsageType
value that's associated with the cost anomaly.
*
*/
private String usageType;
/**
*
* The member account name value that's associated with the cost anomaly.
*
*/
private String linkedAccountName;
/**
*
* The Amazon Web Service name that's associated with the cost anomaly.
*
*
* @param service
* The Amazon Web Service name that's associated with the cost anomaly.
*/
public void setService(String service) {
this.service = service;
}
/**
*
* The Amazon Web Service name that's associated with the cost anomaly.
*
*
* @return The Amazon Web Service name that's associated with the cost anomaly.
*/
public String getService() {
return this.service;
}
/**
*
* The Amazon Web Service name that's associated with the cost anomaly.
*
*
* @param service
* The Amazon Web Service name that's associated with the cost anomaly.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RootCause withService(String service) {
setService(service);
return this;
}
/**
*
* The Amazon Web Services Region that's associated with the cost anomaly.
*
*
* @param region
* The Amazon Web Services Region that's associated with the cost anomaly.
*/
public void setRegion(String region) {
this.region = region;
}
/**
*
* The Amazon Web Services Region that's associated with the cost anomaly.
*
*
* @return The Amazon Web Services Region that's associated with the cost anomaly.
*/
public String getRegion() {
return this.region;
}
/**
*
* The Amazon Web Services Region that's associated with the cost anomaly.
*
*
* @param region
* The Amazon Web Services Region that's associated with the cost anomaly.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RootCause withRegion(String region) {
setRegion(region);
return this;
}
/**
*
* The member account value that's associated with the cost anomaly.
*
*
* @param linkedAccount
* The member account value that's associated with the cost anomaly.
*/
public void setLinkedAccount(String linkedAccount) {
this.linkedAccount = linkedAccount;
}
/**
*
* The member account value that's associated with the cost anomaly.
*
*
* @return The member account value that's associated with the cost anomaly.
*/
public String getLinkedAccount() {
return this.linkedAccount;
}
/**
*
* The member account value that's associated with the cost anomaly.
*
*
* @param linkedAccount
* The member account value that's associated with the cost anomaly.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RootCause withLinkedAccount(String linkedAccount) {
setLinkedAccount(linkedAccount);
return this;
}
/**
*
* The UsageType
value that's associated with the cost anomaly.
*
*
* @param usageType
* The UsageType
value that's associated with the cost anomaly.
*/
public void setUsageType(String usageType) {
this.usageType = usageType;
}
/**
*
* The UsageType
value that's associated with the cost anomaly.
*
*
* @return The UsageType
value that's associated with the cost anomaly.
*/
public String getUsageType() {
return this.usageType;
}
/**
*
* The UsageType
value that's associated with the cost anomaly.
*
*
* @param usageType
* The UsageType
value that's associated with the cost anomaly.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RootCause withUsageType(String usageType) {
setUsageType(usageType);
return this;
}
/**
*
* The member account name value that's associated with the cost anomaly.
*
*
* @param linkedAccountName
* The member account name value that's associated with the cost anomaly.
*/
public void setLinkedAccountName(String linkedAccountName) {
this.linkedAccountName = linkedAccountName;
}
/**
*
* The member account name value that's associated with the cost anomaly.
*
*
* @return The member account name value that's associated with the cost anomaly.
*/
public String getLinkedAccountName() {
return this.linkedAccountName;
}
/**
*
* The member account name value that's associated with the cost anomaly.
*
*
* @param linkedAccountName
* The member account name value that's associated with the cost anomaly.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RootCause withLinkedAccountName(String linkedAccountName) {
setLinkedAccountName(linkedAccountName);
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 (getService() != null)
sb.append("Service: ").append(getService()).append(",");
if (getRegion() != null)
sb.append("Region: ").append(getRegion()).append(",");
if (getLinkedAccount() != null)
sb.append("LinkedAccount: ").append(getLinkedAccount()).append(",");
if (getUsageType() != null)
sb.append("UsageType: ").append(getUsageType()).append(",");
if (getLinkedAccountName() != null)
sb.append("LinkedAccountName: ").append(getLinkedAccountName());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof RootCause == false)
return false;
RootCause other = (RootCause) obj;
if (other.getService() == null ^ this.getService() == null)
return false;
if (other.getService() != null && other.getService().equals(this.getService()) == 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.getLinkedAccount() == null ^ this.getLinkedAccount() == null)
return false;
if (other.getLinkedAccount() != null && other.getLinkedAccount().equals(this.getLinkedAccount()) == false)
return false;
if (other.getUsageType() == null ^ this.getUsageType() == null)
return false;
if (other.getUsageType() != null && other.getUsageType().equals(this.getUsageType()) == false)
return false;
if (other.getLinkedAccountName() == null ^ this.getLinkedAccountName() == null)
return false;
if (other.getLinkedAccountName() != null && other.getLinkedAccountName().equals(this.getLinkedAccountName()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getService() == null) ? 0 : getService().hashCode());
hashCode = prime * hashCode + ((getRegion() == null) ? 0 : getRegion().hashCode());
hashCode = prime * hashCode + ((getLinkedAccount() == null) ? 0 : getLinkedAccount().hashCode());
hashCode = prime * hashCode + ((getUsageType() == null) ? 0 : getUsageType().hashCode());
hashCode = prime * hashCode + ((getLinkedAccountName() == null) ? 0 : getLinkedAccountName().hashCode());
return hashCode;
}
@Override
public RootCause clone() {
try {
return (RootCause) 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.RootCauseMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}