/* * 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.route53.model; import java.io.Serializable; import javax.annotation.Generated; /** *
* A complex type that contains the status that one Amazon Route 53 health checker reports and the time of the health * check. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class StatusReport implements Serializable, Cloneable { /** ** A description of the status of the health check endpoint as reported by one of the Amazon Route 53 health * checkers. *
*/ private String status; /** *
* The date and time that the health checker performed the health check in ISO 8601 format and Coordinated Universal Time (UTC). For
* example, the value 2017-03-27T17:48:16.751Z
represents March 27, 2017 at 17:48:16.751 UTC.
*
* A description of the status of the health check endpoint as reported by one of the Amazon Route 53 health * checkers. *
* * @param status * A description of the status of the health check endpoint as reported by one of the Amazon Route 53 health * checkers. */ public void setStatus(String status) { this.status = status; } /** ** A description of the status of the health check endpoint as reported by one of the Amazon Route 53 health * checkers. *
* * @return A description of the status of the health check endpoint as reported by one of the Amazon Route 53 health * checkers. */ public String getStatus() { return this.status; } /** ** A description of the status of the health check endpoint as reported by one of the Amazon Route 53 health * checkers. *
* * @param status * A description of the status of the health check endpoint as reported by one of the Amazon Route 53 health * checkers. * @return Returns a reference to this object so that method calls can be chained together. */ public StatusReport withStatus(String status) { setStatus(status); return this; } /** *
* The date and time that the health checker performed the health check in ISO 8601 format and Coordinated Universal Time (UTC). For
* example, the value 2017-03-27T17:48:16.751Z
represents March 27, 2017 at 17:48:16.751 UTC.
*
2017-03-27T17:48:16.751Z
represents March 27, 2017 at 17:48:16.751
* UTC.
*/
public void setCheckedTime(java.util.Date checkedTime) {
this.checkedTime = checkedTime;
}
/**
*
* The date and time that the health checker performed the health check in ISO 8601 format and Coordinated Universal Time (UTC). For
* example, the value 2017-03-27T17:48:16.751Z
represents March 27, 2017 at 17:48:16.751 UTC.
*
2017-03-27T17:48:16.751Z
represents March 27, 2017 at 17:48:16.751
* UTC.
*/
public java.util.Date getCheckedTime() {
return this.checkedTime;
}
/**
*
* The date and time that the health checker performed the health check in ISO 8601 format and Coordinated Universal Time (UTC). For
* example, the value 2017-03-27T17:48:16.751Z
represents March 27, 2017 at 17:48:16.751 UTC.
*
2017-03-27T17:48:16.751Z
represents March 27, 2017 at 17:48:16.751
* UTC.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StatusReport withCheckedTime(java.util.Date checkedTime) {
setCheckedTime(checkedTime);
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 (getStatus() != null)
sb.append("Status: ").append(getStatus()).append(",");
if (getCheckedTime() != null)
sb.append("CheckedTime: ").append(getCheckedTime());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof StatusReport == false)
return false;
StatusReport other = (StatusReport) obj;
if (other.getStatus() == null ^ this.getStatus() == null)
return false;
if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false)
return false;
if (other.getCheckedTime() == null ^ this.getCheckedTime() == null)
return false;
if (other.getCheckedTime() != null && other.getCheckedTime().equals(this.getCheckedTime()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode());
hashCode = prime * hashCode + ((getCheckedTime() == null) ? 0 : getCheckedTime().hashCode());
return hashCode;
}
@Override
public StatusReport clone() {
try {
return (StatusReport) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}