in cloudwatch-lambda/src/main/java/com/amazonwebservices/blogs/containers/kubernetes/model/ScalingPolicy.java [57:68]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ScalingPolicy that = (ScalingPolicy) o;
return Objects.equals(this.value, that.value)
&& Objects.equals(this.type, that.type);
}