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

com.amazonaws.services.wellarchitected.model.CheckSummary Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Well-Architected Tool module holds the client classes that are used for communicating with AWS Well-Architected Tool Service

There is a newer version: 1.12.778
Show newest version
/*
 * Copyright 2019-2024 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.wellarchitected.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Trusted Advisor check summary. *

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

* Trusted Advisor check ID. *

*/ private String id; /** *

* Trusted Advisor check name. *

*/ private String name; /** *

* Provider of the check related to the best practice. *

*/ private String provider; /** *

* Trusted Advisor check description. *

*/ private String description; private java.util.Date updatedAt; /** *

* Well-Architected Lens ARN associated to the check. *

*/ private String lensArn; private String pillarId; private String questionId; private String choiceId; /** *

* Status associated to the check. *

*/ private String status; /** *

* Account summary associated to the check. *

*/ private java.util.Map accountSummary; /** *

* Trusted Advisor check ID. *

* * @param id * Trusted Advisor check ID. */ public void setId(String id) { this.id = id; } /** *

* Trusted Advisor check ID. *

* * @return Trusted Advisor check ID. */ public String getId() { return this.id; } /** *

* Trusted Advisor check ID. *

* * @param id * Trusted Advisor check ID. * @return Returns a reference to this object so that method calls can be chained together. */ public CheckSummary withId(String id) { setId(id); return this; } /** *

* Trusted Advisor check name. *

* * @param name * Trusted Advisor check name. */ public void setName(String name) { this.name = name; } /** *

* Trusted Advisor check name. *

* * @return Trusted Advisor check name. */ public String getName() { return this.name; } /** *

* Trusted Advisor check name. *

* * @param name * Trusted Advisor check name. * @return Returns a reference to this object so that method calls can be chained together. */ public CheckSummary withName(String name) { setName(name); return this; } /** *

* Provider of the check related to the best practice. *

* * @param provider * Provider of the check related to the best practice. * @see CheckProvider */ public void setProvider(String provider) { this.provider = provider; } /** *

* Provider of the check related to the best practice. *

* * @return Provider of the check related to the best practice. * @see CheckProvider */ public String getProvider() { return this.provider; } /** *

* Provider of the check related to the best practice. *

* * @param provider * Provider of the check related to the best practice. * @return Returns a reference to this object so that method calls can be chained together. * @see CheckProvider */ public CheckSummary withProvider(String provider) { setProvider(provider); return this; } /** *

* Provider of the check related to the best practice. *

* * @param provider * Provider of the check related to the best practice. * @return Returns a reference to this object so that method calls can be chained together. * @see CheckProvider */ public CheckSummary withProvider(CheckProvider provider) { this.provider = provider.toString(); return this; } /** *

* Trusted Advisor check description. *

* * @param description * Trusted Advisor check description. */ public void setDescription(String description) { this.description = description; } /** *

* Trusted Advisor check description. *

* * @return Trusted Advisor check description. */ public String getDescription() { return this.description; } /** *

* Trusted Advisor check description. *

* * @param description * Trusted Advisor check description. * @return Returns a reference to this object so that method calls can be chained together. */ public CheckSummary withDescription(String description) { setDescription(description); return this; } /** * @param updatedAt */ public void setUpdatedAt(java.util.Date updatedAt) { this.updatedAt = updatedAt; } /** * @return */ public java.util.Date getUpdatedAt() { return this.updatedAt; } /** * @param updatedAt * @return Returns a reference to this object so that method calls can be chained together. */ public CheckSummary withUpdatedAt(java.util.Date updatedAt) { setUpdatedAt(updatedAt); return this; } /** *

* Well-Architected Lens ARN associated to the check. *

* * @param lensArn * Well-Architected Lens ARN associated to the check. */ public void setLensArn(String lensArn) { this.lensArn = lensArn; } /** *

* Well-Architected Lens ARN associated to the check. *

* * @return Well-Architected Lens ARN associated to the check. */ public String getLensArn() { return this.lensArn; } /** *

* Well-Architected Lens ARN associated to the check. *

* * @param lensArn * Well-Architected Lens ARN associated to the check. * @return Returns a reference to this object so that method calls can be chained together. */ public CheckSummary withLensArn(String lensArn) { setLensArn(lensArn); return this; } /** * @param pillarId */ public void setPillarId(String pillarId) { this.pillarId = pillarId; } /** * @return */ public String getPillarId() { return this.pillarId; } /** * @param pillarId * @return Returns a reference to this object so that method calls can be chained together. */ public CheckSummary withPillarId(String pillarId) { setPillarId(pillarId); return this; } /** * @param questionId */ public void setQuestionId(String questionId) { this.questionId = questionId; } /** * @return */ public String getQuestionId() { return this.questionId; } /** * @param questionId * @return Returns a reference to this object so that method calls can be chained together. */ public CheckSummary withQuestionId(String questionId) { setQuestionId(questionId); return this; } /** * @param choiceId */ public void setChoiceId(String choiceId) { this.choiceId = choiceId; } /** * @return */ public String getChoiceId() { return this.choiceId; } /** * @param choiceId * @return Returns a reference to this object so that method calls can be chained together. */ public CheckSummary withChoiceId(String choiceId) { setChoiceId(choiceId); return this; } /** *

* Status associated to the check. *

* * @param status * Status associated to the check. * @see CheckStatus */ public void setStatus(String status) { this.status = status; } /** *

* Status associated to the check. *

* * @return Status associated to the check. * @see CheckStatus */ public String getStatus() { return this.status; } /** *

* Status associated to the check. *

* * @param status * Status associated to the check. * @return Returns a reference to this object so that method calls can be chained together. * @see CheckStatus */ public CheckSummary withStatus(String status) { setStatus(status); return this; } /** *

* Status associated to the check. *

* * @param status * Status associated to the check. * @return Returns a reference to this object so that method calls can be chained together. * @see CheckStatus */ public CheckSummary withStatus(CheckStatus status) { this.status = status.toString(); return this; } /** *

* Account summary associated to the check. *

* * @return Account summary associated to the check. */ public java.util.Map getAccountSummary() { return accountSummary; } /** *

* Account summary associated to the check. *

* * @param accountSummary * Account summary associated to the check. */ public void setAccountSummary(java.util.Map accountSummary) { this.accountSummary = accountSummary; } /** *

* Account summary associated to the check. *

* * @param accountSummary * Account summary associated to the check. * @return Returns a reference to this object so that method calls can be chained together. */ public CheckSummary withAccountSummary(java.util.Map accountSummary) { setAccountSummary(accountSummary); return this; } /** * Add a single AccountSummary entry * * @see CheckSummary#withAccountSummary * @returns a reference to this object so that method calls can be chained together. */ public CheckSummary addAccountSummaryEntry(String key, Integer value) { if (null == this.accountSummary) { this.accountSummary = new java.util.HashMap(); } if (this.accountSummary.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.accountSummary.put(key, value); return this; } /** * Removes all the entries added into AccountSummary. * * @return Returns a reference to this object so that method calls can be chained together. */ public CheckSummary clearAccountSummaryEntries() { this.accountSummary = null; 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 (getId() != null) sb.append("Id: ").append(getId()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getProvider() != null) sb.append("Provider: ").append(getProvider()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getUpdatedAt() != null) sb.append("UpdatedAt: ").append(getUpdatedAt()).append(","); if (getLensArn() != null) sb.append("LensArn: ").append(getLensArn()).append(","); if (getPillarId() != null) sb.append("PillarId: ").append(getPillarId()).append(","); if (getQuestionId() != null) sb.append("QuestionId: ").append(getQuestionId()).append(","); if (getChoiceId() != null) sb.append("ChoiceId: ").append(getChoiceId()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getAccountSummary() != null) sb.append("AccountSummary: ").append(getAccountSummary()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CheckSummary == false) return false; CheckSummary other = (CheckSummary) obj; if (other.getId() == null ^ this.getId() == null) return false; if (other.getId() != null && other.getId().equals(this.getId()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getProvider() == null ^ this.getProvider() == null) return false; if (other.getProvider() != null && other.getProvider().equals(this.getProvider()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getUpdatedAt() == null ^ this.getUpdatedAt() == null) return false; if (other.getUpdatedAt() != null && other.getUpdatedAt().equals(this.getUpdatedAt()) == false) return false; if (other.getLensArn() == null ^ this.getLensArn() == null) return false; if (other.getLensArn() != null && other.getLensArn().equals(this.getLensArn()) == false) return false; if (other.getPillarId() == null ^ this.getPillarId() == null) return false; if (other.getPillarId() != null && other.getPillarId().equals(this.getPillarId()) == false) return false; if (other.getQuestionId() == null ^ this.getQuestionId() == null) return false; if (other.getQuestionId() != null && other.getQuestionId().equals(this.getQuestionId()) == false) return false; if (other.getChoiceId() == null ^ this.getChoiceId() == null) return false; if (other.getChoiceId() != null && other.getChoiceId().equals(this.getChoiceId()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getAccountSummary() == null ^ this.getAccountSummary() == null) return false; if (other.getAccountSummary() != null && other.getAccountSummary().equals(this.getAccountSummary()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getProvider() == null) ? 0 : getProvider().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getUpdatedAt() == null) ? 0 : getUpdatedAt().hashCode()); hashCode = prime * hashCode + ((getLensArn() == null) ? 0 : getLensArn().hashCode()); hashCode = prime * hashCode + ((getPillarId() == null) ? 0 : getPillarId().hashCode()); hashCode = prime * hashCode + ((getQuestionId() == null) ? 0 : getQuestionId().hashCode()); hashCode = prime * hashCode + ((getChoiceId() == null) ? 0 : getChoiceId().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getAccountSummary() == null) ? 0 : getAccountSummary().hashCode()); return hashCode; } @Override public CheckSummary clone() { try { return (CheckSummary) 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.wellarchitected.model.transform.CheckSummaryMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy