/* * Copyright 2018-2023 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; /** *
* A report of a lens review. *
* * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class LensReviewReport implements Serializable, Cloneable, StructuredPojo { private String lensAlias; /** ** The ARN for the lens. *
*/ private String lensArn; private String base64String; /** * @param lensAlias */ public void setLensAlias(String lensAlias) { this.lensAlias = lensAlias; } /** * @return */ public String getLensAlias() { return this.lensAlias; } /** * @param lensAlias * @return Returns a reference to this object so that method calls can be chained together. */ public LensReviewReport withLensAlias(String lensAlias) { setLensAlias(lensAlias); return this; } /** ** The ARN for the lens. *
* * @param lensArn * The ARN for the lens. */ public void setLensArn(String lensArn) { this.lensArn = lensArn; } /** ** The ARN for the lens. *
* * @return The ARN for the lens. */ public String getLensArn() { return this.lensArn; } /** ** The ARN for the lens. *
* * @param lensArn * The ARN for the lens. * @return Returns a reference to this object so that method calls can be chained together. */ public LensReviewReport withLensArn(String lensArn) { setLensArn(lensArn); return this; } /** * @param base64String */ public void setBase64String(String base64String) { this.base64String = base64String; } /** * @return */ public String getBase64String() { return this.base64String; } /** * @param base64String * @return Returns a reference to this object so that method calls can be chained together. */ public LensReviewReport withBase64String(String base64String) { setBase64String(base64String); 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 (getLensAlias() != null) sb.append("LensAlias: ").append(getLensAlias()).append(","); if (getLensArn() != null) sb.append("LensArn: ").append(getLensArn()).append(","); if (getBase64String() != null) sb.append("Base64String: ").append(getBase64String()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof LensReviewReport == false) return false; LensReviewReport other = (LensReviewReport) obj; if (other.getLensAlias() == null ^ this.getLensAlias() == null) return false; if (other.getLensAlias() != null && other.getLensAlias().equals(this.getLensAlias()) == 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.getBase64String() == null ^ this.getBase64String() == null) return false; if (other.getBase64String() != null && other.getBase64String().equals(this.getBase64String()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getLensAlias() == null) ? 0 : getLensAlias().hashCode()); hashCode = prime * hashCode + ((getLensArn() == null) ? 0 : getLensArn().hashCode()); hashCode = prime * hashCode + ((getBase64String() == null) ? 0 : getBase64String().hashCode()); return hashCode; } @Override public LensReviewReport clone() { try { return (LensReviewReport) 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.LensReviewReportMarshaller.getInstance().marshall(this, protocolMarshaller); } }