/* * 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.lightsail.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Describes the health check configuration of an Amazon Lightsail container service. *
* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ContainerServiceHealthCheckConfig implements Serializable, Cloneable, StructuredPojo { /** *
* The number of consecutive health checks successes required before moving the container to the
* Healthy
state. The default value is 2
.
*
* The number of consecutive health check failures required before moving the container to the
* Unhealthy
state. The default value is 2
.
*
* The amount of time, in seconds, during which no response means a failed health check. You can specify between 2
* and 60 seconds. The default value is 2
.
*
* The approximate interval, in seconds, between health checks of an individual container. You can specify between 5
* and 300 seconds. The default value is 5
.
*
* The path on the container on which to perform the health check. The default value is /
.
*
* The HTTP codes to use when checking for a successful response from a container. You can specify values between
* 200
and 499
. You can specify multiple values (for example, 200,202
) or a
* range of values (for example, 200-299
).
*
* The number of consecutive health checks successes required before moving the container to the
* Healthy
state. The default value is 2
.
*
Healthy
state. The default value is 2
.
*/
public void setHealthyThreshold(Integer healthyThreshold) {
this.healthyThreshold = healthyThreshold;
}
/**
*
* The number of consecutive health checks successes required before moving the container to the
* Healthy
state. The default value is 2
.
*
Healthy
state. The default value is 2
.
*/
public Integer getHealthyThreshold() {
return this.healthyThreshold;
}
/**
*
* The number of consecutive health checks successes required before moving the container to the
* Healthy
state. The default value is 2
.
*
Healthy
state. The default value is 2
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ContainerServiceHealthCheckConfig withHealthyThreshold(Integer healthyThreshold) {
setHealthyThreshold(healthyThreshold);
return this;
}
/**
*
* The number of consecutive health check failures required before moving the container to the
* Unhealthy
state. The default value is 2
.
*
Unhealthy
state. The default value is 2
.
*/
public void setUnhealthyThreshold(Integer unhealthyThreshold) {
this.unhealthyThreshold = unhealthyThreshold;
}
/**
*
* The number of consecutive health check failures required before moving the container to the
* Unhealthy
state. The default value is 2
.
*
Unhealthy
state. The default value is 2
.
*/
public Integer getUnhealthyThreshold() {
return this.unhealthyThreshold;
}
/**
*
* The number of consecutive health check failures required before moving the container to the
* Unhealthy
state. The default value is 2
.
*
Unhealthy
state. The default value is 2
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ContainerServiceHealthCheckConfig withUnhealthyThreshold(Integer unhealthyThreshold) {
setUnhealthyThreshold(unhealthyThreshold);
return this;
}
/**
*
* The amount of time, in seconds, during which no response means a failed health check. You can specify between 2
* and 60 seconds. The default value is 2
.
*
2
.
*/
public void setTimeoutSeconds(Integer timeoutSeconds) {
this.timeoutSeconds = timeoutSeconds;
}
/**
*
* The amount of time, in seconds, during which no response means a failed health check. You can specify between 2
* and 60 seconds. The default value is 2
.
*
2
.
*/
public Integer getTimeoutSeconds() {
return this.timeoutSeconds;
}
/**
*
* The amount of time, in seconds, during which no response means a failed health check. You can specify between 2
* and 60 seconds. The default value is 2
.
*
2
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ContainerServiceHealthCheckConfig withTimeoutSeconds(Integer timeoutSeconds) {
setTimeoutSeconds(timeoutSeconds);
return this;
}
/**
*
* The approximate interval, in seconds, between health checks of an individual container. You can specify between 5
* and 300 seconds. The default value is 5
.
*
5
.
*/
public void setIntervalSeconds(Integer intervalSeconds) {
this.intervalSeconds = intervalSeconds;
}
/**
*
* The approximate interval, in seconds, between health checks of an individual container. You can specify between 5
* and 300 seconds. The default value is 5
.
*
5
.
*/
public Integer getIntervalSeconds() {
return this.intervalSeconds;
}
/**
*
* The approximate interval, in seconds, between health checks of an individual container. You can specify between 5
* and 300 seconds. The default value is 5
.
*
5
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ContainerServiceHealthCheckConfig withIntervalSeconds(Integer intervalSeconds) {
setIntervalSeconds(intervalSeconds);
return this;
}
/**
*
* The path on the container on which to perform the health check. The default value is /
.
*
/
.
*/
public void setPath(String path) {
this.path = path;
}
/**
*
* The path on the container on which to perform the health check. The default value is /
.
*
/
.
*/
public String getPath() {
return this.path;
}
/**
*
* The path on the container on which to perform the health check. The default value is /
.
*
/
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ContainerServiceHealthCheckConfig withPath(String path) {
setPath(path);
return this;
}
/**
*
* The HTTP codes to use when checking for a successful response from a container. You can specify values between
* 200
and 499
. You can specify multiple values (for example, 200,202
) or a
* range of values (for example, 200-299
).
*
200
and 499
. You can specify multiple values (for example,
* 200,202
) or a range of values (for example, 200-299
).
*/
public void setSuccessCodes(String successCodes) {
this.successCodes = successCodes;
}
/**
*
* The HTTP codes to use when checking for a successful response from a container. You can specify values between
* 200
and 499
. You can specify multiple values (for example, 200,202
) or a
* range of values (for example, 200-299
).
*
200
and 499
. You can specify multiple values (for example,
* 200,202
) or a range of values (for example, 200-299
).
*/
public String getSuccessCodes() {
return this.successCodes;
}
/**
*
* The HTTP codes to use when checking for a successful response from a container. You can specify values between
* 200
and 499
. You can specify multiple values (for example, 200,202
) or a
* range of values (for example, 200-299
).
*
200
and 499
. You can specify multiple values (for example,
* 200,202
) or a range of values (for example, 200-299
).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ContainerServiceHealthCheckConfig withSuccessCodes(String successCodes) {
setSuccessCodes(successCodes);
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 (getHealthyThreshold() != null)
sb.append("HealthyThreshold: ").append(getHealthyThreshold()).append(",");
if (getUnhealthyThreshold() != null)
sb.append("UnhealthyThreshold: ").append(getUnhealthyThreshold()).append(",");
if (getTimeoutSeconds() != null)
sb.append("TimeoutSeconds: ").append(getTimeoutSeconds()).append(",");
if (getIntervalSeconds() != null)
sb.append("IntervalSeconds: ").append(getIntervalSeconds()).append(",");
if (getPath() != null)
sb.append("Path: ").append(getPath()).append(",");
if (getSuccessCodes() != null)
sb.append("SuccessCodes: ").append(getSuccessCodes());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ContainerServiceHealthCheckConfig == false)
return false;
ContainerServiceHealthCheckConfig other = (ContainerServiceHealthCheckConfig) obj;
if (other.getHealthyThreshold() == null ^ this.getHealthyThreshold() == null)
return false;
if (other.getHealthyThreshold() != null && other.getHealthyThreshold().equals(this.getHealthyThreshold()) == false)
return false;
if (other.getUnhealthyThreshold() == null ^ this.getUnhealthyThreshold() == null)
return false;
if (other.getUnhealthyThreshold() != null && other.getUnhealthyThreshold().equals(this.getUnhealthyThreshold()) == false)
return false;
if (other.getTimeoutSeconds() == null ^ this.getTimeoutSeconds() == null)
return false;
if (other.getTimeoutSeconds() != null && other.getTimeoutSeconds().equals(this.getTimeoutSeconds()) == false)
return false;
if (other.getIntervalSeconds() == null ^ this.getIntervalSeconds() == null)
return false;
if (other.getIntervalSeconds() != null && other.getIntervalSeconds().equals(this.getIntervalSeconds()) == false)
return false;
if (other.getPath() == null ^ this.getPath() == null)
return false;
if (other.getPath() != null && other.getPath().equals(this.getPath()) == false)
return false;
if (other.getSuccessCodes() == null ^ this.getSuccessCodes() == null)
return false;
if (other.getSuccessCodes() != null && other.getSuccessCodes().equals(this.getSuccessCodes()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getHealthyThreshold() == null) ? 0 : getHealthyThreshold().hashCode());
hashCode = prime * hashCode + ((getUnhealthyThreshold() == null) ? 0 : getUnhealthyThreshold().hashCode());
hashCode = prime * hashCode + ((getTimeoutSeconds() == null) ? 0 : getTimeoutSeconds().hashCode());
hashCode = prime * hashCode + ((getIntervalSeconds() == null) ? 0 : getIntervalSeconds().hashCode());
hashCode = prime * hashCode + ((getPath() == null) ? 0 : getPath().hashCode());
hashCode = prime * hashCode + ((getSuccessCodes() == null) ? 0 : getSuccessCodes().hashCode());
return hashCode;
}
@Override
public ContainerServiceHealthCheckConfig clone() {
try {
return (ContainerServiceHealthCheckConfig) 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.lightsail.model.transform.ContainerServiceHealthCheckConfigMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}