in cloudwatch-lambda/src/main/java/com/amazonwebservices/blogs/containers/kubernetes/model/K8sMetricAlarmCustomObjectSpec.java [159:174]
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
K8sMetricAlarmCustomObjectSpec that = (K8sMetricAlarmCustomObjectSpec) o;
return Objects.equals(this.minReplicas, that.minReplicas)
&& Objects.equals(this.maxReplicas, that.maxReplicas)
&& Objects.equals(this.deployment, that.deployment)
&& Objects.equals(this.scaleUpBehavior, that.scaleUpBehavior)
&& Objects.equals(this.scaleDownBehavior, that.scaleDownBehavior)
&& Objects.equals(this.scaleUpAlarmConfig, that.scaleUpAlarmConfig)
&& Objects.equals(this.scaleDownAlarmConfig, that.scaleDownAlarmConfig);
}