com.amazonaws.services.iotevents.model.DescribeAlarmModelResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-iotevents Show documentation
/*
* Copyright 2019-2024 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.iotevents.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DescribeAlarmModelResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* The time the alarm model was created, in the Unix epoch format.
*
*/
private java.util.Date creationTime;
/**
*
* The ARN of the alarm model. For more information, see Amazon Resource Names
* (ARNs) in the AWS General Reference.
*
*/
private String alarmModelArn;
/**
*
* The version of the alarm model.
*
*/
private String alarmModelVersion;
/**
*
* The time the alarm model was last updated, in the Unix epoch format.
*
*/
private java.util.Date lastUpdateTime;
/**
*
* The status of the alarm model. The status can be one of the following values:
*
*
* -
*
* ACTIVE
- The alarm model is active and it's ready to evaluate data.
*
*
* -
*
* ACTIVATING
- AWS IoT Events is activating your alarm model. Activating an alarm model can take up to
* a few minutes.
*
*
* -
*
* INACTIVE
- The alarm model is inactive, so it isn't ready to evaluate data. Check your alarm model
* information and update the alarm model.
*
*
* -
*
* FAILED
- You couldn't create or update the alarm model. Check your alarm model information and try
* again.
*
*
*
*/
private String status;
/**
*
* Contains information about the status of the alarm model.
*
*/
private String statusMessage;
/**
*
* The name of the alarm model.
*
*/
private String alarmModelName;
/**
*
* The description of the alarm model.
*
*/
private String alarmModelDescription;
/**
*
* The ARN of the IAM role that allows the alarm to perform actions and access AWS resources. For more information,
* see Amazon Resource Names
* (ARNs) in the AWS General Reference.
*
*/
private String roleArn;
/**
*
* An input attribute used as a key to create an alarm. AWS IoT Events routes inputs associated with this
* key to the alarm.
*
*/
private String key;
/**
*
* A non-negative integer that reflects the severity level of the alarm.
*
*/
private Integer severity;
/**
*
* Defines when your alarm is invoked.
*
*/
private AlarmRule alarmRule;
/**
*
* Contains information about one or more notification actions.
*
*/
private AlarmNotification alarmNotification;
/**
*
* Contains information about one or more alarm actions.
*
*/
private AlarmEventActions alarmEventActions;
/**
*
* Contains the configuration information of alarm state changes.
*
*/
private AlarmCapabilities alarmCapabilities;
/**
*
* The time the alarm model was created, in the Unix epoch format.
*
*
* @param creationTime
* The time the alarm model was created, in the Unix epoch format.
*/
public void setCreationTime(java.util.Date creationTime) {
this.creationTime = creationTime;
}
/**
*
* The time the alarm model was created, in the Unix epoch format.
*
*
* @return The time the alarm model was created, in the Unix epoch format.
*/
public java.util.Date getCreationTime() {
return this.creationTime;
}
/**
*
* The time the alarm model was created, in the Unix epoch format.
*
*
* @param creationTime
* The time the alarm model was created, in the Unix epoch format.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAlarmModelResult withCreationTime(java.util.Date creationTime) {
setCreationTime(creationTime);
return this;
}
/**
*
* The ARN of the alarm model. For more information, see Amazon Resource Names
* (ARNs) in the AWS General Reference.
*
*
* @param alarmModelArn
* The ARN of the alarm model. For more information, see Amazon Resource Names
* (ARNs) in the AWS General Reference.
*/
public void setAlarmModelArn(String alarmModelArn) {
this.alarmModelArn = alarmModelArn;
}
/**
*
* The ARN of the alarm model. For more information, see Amazon Resource Names
* (ARNs) in the AWS General Reference.
*
*
* @return The ARN of the alarm model. For more information, see Amazon Resource Names
* (ARNs) in the AWS General Reference.
*/
public String getAlarmModelArn() {
return this.alarmModelArn;
}
/**
*
* The ARN of the alarm model. For more information, see Amazon Resource Names
* (ARNs) in the AWS General Reference.
*
*
* @param alarmModelArn
* The ARN of the alarm model. For more information, see Amazon Resource Names
* (ARNs) in the AWS General Reference.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAlarmModelResult withAlarmModelArn(String alarmModelArn) {
setAlarmModelArn(alarmModelArn);
return this;
}
/**
*
* The version of the alarm model.
*
*
* @param alarmModelVersion
* The version of the alarm model.
*/
public void setAlarmModelVersion(String alarmModelVersion) {
this.alarmModelVersion = alarmModelVersion;
}
/**
*
* The version of the alarm model.
*
*
* @return The version of the alarm model.
*/
public String getAlarmModelVersion() {
return this.alarmModelVersion;
}
/**
*
* The version of the alarm model.
*
*
* @param alarmModelVersion
* The version of the alarm model.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAlarmModelResult withAlarmModelVersion(String alarmModelVersion) {
setAlarmModelVersion(alarmModelVersion);
return this;
}
/**
*
* The time the alarm model was last updated, in the Unix epoch format.
*
*
* @param lastUpdateTime
* The time the alarm model was last updated, in the Unix epoch format.
*/
public void setLastUpdateTime(java.util.Date lastUpdateTime) {
this.lastUpdateTime = lastUpdateTime;
}
/**
*
* The time the alarm model was last updated, in the Unix epoch format.
*
*
* @return The time the alarm model was last updated, in the Unix epoch format.
*/
public java.util.Date getLastUpdateTime() {
return this.lastUpdateTime;
}
/**
*
* The time the alarm model was last updated, in the Unix epoch format.
*
*
* @param lastUpdateTime
* The time the alarm model was last updated, in the Unix epoch format.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAlarmModelResult withLastUpdateTime(java.util.Date lastUpdateTime) {
setLastUpdateTime(lastUpdateTime);
return this;
}
/**
*
* The status of the alarm model. The status can be one of the following values:
*
*
* -
*
* ACTIVE
- The alarm model is active and it's ready to evaluate data.
*
*
* -
*
* ACTIVATING
- AWS IoT Events is activating your alarm model. Activating an alarm model can take up to
* a few minutes.
*
*
* -
*
* INACTIVE
- The alarm model is inactive, so it isn't ready to evaluate data. Check your alarm model
* information and update the alarm model.
*
*
* -
*
* FAILED
- You couldn't create or update the alarm model. Check your alarm model information and try
* again.
*
*
*
*
* @param status
* The status of the alarm model. The status can be one of the following values:
*
* -
*
* ACTIVE
- The alarm model is active and it's ready to evaluate data.
*
*
* -
*
* ACTIVATING
- AWS IoT Events is activating your alarm model. Activating an alarm model can
* take up to a few minutes.
*
*
* -
*
* INACTIVE
- The alarm model is inactive, so it isn't ready to evaluate data. Check your alarm
* model information and update the alarm model.
*
*
* -
*
* FAILED
- You couldn't create or update the alarm model. Check your alarm model information
* and try again.
*
*
* @see AlarmModelVersionStatus
*/
public void setStatus(String status) {
this.status = status;
}
/**
*
* The status of the alarm model. The status can be one of the following values:
*
*
* -
*
* ACTIVE
- The alarm model is active and it's ready to evaluate data.
*
*
* -
*
* ACTIVATING
- AWS IoT Events is activating your alarm model. Activating an alarm model can take up to
* a few minutes.
*
*
* -
*
* INACTIVE
- The alarm model is inactive, so it isn't ready to evaluate data. Check your alarm model
* information and update the alarm model.
*
*
* -
*
* FAILED
- You couldn't create or update the alarm model. Check your alarm model information and try
* again.
*
*
*
*
* @return The status of the alarm model. The status can be one of the following values:
*
* -
*
* ACTIVE
- The alarm model is active and it's ready to evaluate data.
*
*
* -
*
* ACTIVATING
- AWS IoT Events is activating your alarm model. Activating an alarm model can
* take up to a few minutes.
*
*
* -
*
* INACTIVE
- The alarm model is inactive, so it isn't ready to evaluate data. Check your alarm
* model information and update the alarm model.
*
*
* -
*
* FAILED
- You couldn't create or update the alarm model. Check your alarm model information
* and try again.
*
*
* @see AlarmModelVersionStatus
*/
public String getStatus() {
return this.status;
}
/**
*
* The status of the alarm model. The status can be one of the following values:
*
*
* -
*
* ACTIVE
- The alarm model is active and it's ready to evaluate data.
*
*
* -
*
* ACTIVATING
- AWS IoT Events is activating your alarm model. Activating an alarm model can take up to
* a few minutes.
*
*
* -
*
* INACTIVE
- The alarm model is inactive, so it isn't ready to evaluate data. Check your alarm model
* information and update the alarm model.
*
*
* -
*
* FAILED
- You couldn't create or update the alarm model. Check your alarm model information and try
* again.
*
*
*
*
* @param status
* The status of the alarm model. The status can be one of the following values:
*
* -
*
* ACTIVE
- The alarm model is active and it's ready to evaluate data.
*
*
* -
*
* ACTIVATING
- AWS IoT Events is activating your alarm model. Activating an alarm model can
* take up to a few minutes.
*
*
* -
*
* INACTIVE
- The alarm model is inactive, so it isn't ready to evaluate data. Check your alarm
* model information and update the alarm model.
*
*
* -
*
* FAILED
- You couldn't create or update the alarm model. Check your alarm model information
* and try again.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see AlarmModelVersionStatus
*/
public DescribeAlarmModelResult withStatus(String status) {
setStatus(status);
return this;
}
/**
*
* The status of the alarm model. The status can be one of the following values:
*
*
* -
*
* ACTIVE
- The alarm model is active and it's ready to evaluate data.
*
*
* -
*
* ACTIVATING
- AWS IoT Events is activating your alarm model. Activating an alarm model can take up to
* a few minutes.
*
*
* -
*
* INACTIVE
- The alarm model is inactive, so it isn't ready to evaluate data. Check your alarm model
* information and update the alarm model.
*
*
* -
*
* FAILED
- You couldn't create or update the alarm model. Check your alarm model information and try
* again.
*
*
*
*
* @param status
* The status of the alarm model. The status can be one of the following values:
*
* -
*
* ACTIVE
- The alarm model is active and it's ready to evaluate data.
*
*
* -
*
* ACTIVATING
- AWS IoT Events is activating your alarm model. Activating an alarm model can
* take up to a few minutes.
*
*
* -
*
* INACTIVE
- The alarm model is inactive, so it isn't ready to evaluate data. Check your alarm
* model information and update the alarm model.
*
*
* -
*
* FAILED
- You couldn't create or update the alarm model. Check your alarm model information
* and try again.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see AlarmModelVersionStatus
*/
public DescribeAlarmModelResult withStatus(AlarmModelVersionStatus status) {
this.status = status.toString();
return this;
}
/**
*
* Contains information about the status of the alarm model.
*
*
* @param statusMessage
* Contains information about the status of the alarm model.
*/
public void setStatusMessage(String statusMessage) {
this.statusMessage = statusMessage;
}
/**
*
* Contains information about the status of the alarm model.
*
*
* @return Contains information about the status of the alarm model.
*/
public String getStatusMessage() {
return this.statusMessage;
}
/**
*
* Contains information about the status of the alarm model.
*
*
* @param statusMessage
* Contains information about the status of the alarm model.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAlarmModelResult withStatusMessage(String statusMessage) {
setStatusMessage(statusMessage);
return this;
}
/**
*
* The name of the alarm model.
*
*
* @param alarmModelName
* The name of the alarm model.
*/
public void setAlarmModelName(String alarmModelName) {
this.alarmModelName = alarmModelName;
}
/**
*
* The name of the alarm model.
*
*
* @return The name of the alarm model.
*/
public String getAlarmModelName() {
return this.alarmModelName;
}
/**
*
* The name of the alarm model.
*
*
* @param alarmModelName
* The name of the alarm model.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAlarmModelResult withAlarmModelName(String alarmModelName) {
setAlarmModelName(alarmModelName);
return this;
}
/**
*
* The description of the alarm model.
*
*
* @param alarmModelDescription
* The description of the alarm model.
*/
public void setAlarmModelDescription(String alarmModelDescription) {
this.alarmModelDescription = alarmModelDescription;
}
/**
*
* The description of the alarm model.
*
*
* @return The description of the alarm model.
*/
public String getAlarmModelDescription() {
return this.alarmModelDescription;
}
/**
*
* The description of the alarm model.
*
*
* @param alarmModelDescription
* The description of the alarm model.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAlarmModelResult withAlarmModelDescription(String alarmModelDescription) {
setAlarmModelDescription(alarmModelDescription);
return this;
}
/**
*
* The ARN of the IAM role that allows the alarm to perform actions and access AWS resources. For more information,
* see Amazon Resource Names
* (ARNs) in the AWS General Reference.
*
*
* @param roleArn
* The ARN of the IAM role that allows the alarm to perform actions and access AWS resources. For more
* information, see Amazon Resource Names
* (ARNs) in the AWS General Reference.
*/
public void setRoleArn(String roleArn) {
this.roleArn = roleArn;
}
/**
*
* The ARN of the IAM role that allows the alarm to perform actions and access AWS resources. For more information,
* see Amazon Resource Names
* (ARNs) in the AWS General Reference.
*
*
* @return The ARN of the IAM role that allows the alarm to perform actions and access AWS resources. For more
* information, see Amazon Resource Names
* (ARNs) in the AWS General Reference.
*/
public String getRoleArn() {
return this.roleArn;
}
/**
*
* The ARN of the IAM role that allows the alarm to perform actions and access AWS resources. For more information,
* see Amazon Resource Names
* (ARNs) in the AWS General Reference.
*
*
* @param roleArn
* The ARN of the IAM role that allows the alarm to perform actions and access AWS resources. For more
* information, see Amazon Resource Names
* (ARNs) in the AWS General Reference.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAlarmModelResult withRoleArn(String roleArn) {
setRoleArn(roleArn);
return this;
}
/**
*
* An input attribute used as a key to create an alarm. AWS IoT Events routes inputs associated with this
* key to the alarm.
*
*
* @param key
* An input attribute used as a key to create an alarm. AWS IoT Events routes inputs associated with
* this key to the alarm.
*/
public void setKey(String key) {
this.key = key;
}
/**
*
* An input attribute used as a key to create an alarm. AWS IoT Events routes inputs associated with this
* key to the alarm.
*
*
* @return An input attribute used as a key to create an alarm. AWS IoT Events routes inputs associated
* with this key to the alarm.
*/
public String getKey() {
return this.key;
}
/**
*
* An input attribute used as a key to create an alarm. AWS IoT Events routes inputs associated with this
* key to the alarm.
*
*
* @param key
* An input attribute used as a key to create an alarm. AWS IoT Events routes inputs associated with
* this key to the alarm.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAlarmModelResult withKey(String key) {
setKey(key);
return this;
}
/**
*
* A non-negative integer that reflects the severity level of the alarm.
*
*
* @param severity
* A non-negative integer that reflects the severity level of the alarm.
*/
public void setSeverity(Integer severity) {
this.severity = severity;
}
/**
*
* A non-negative integer that reflects the severity level of the alarm.
*
*
* @return A non-negative integer that reflects the severity level of the alarm.
*/
public Integer getSeverity() {
return this.severity;
}
/**
*
* A non-negative integer that reflects the severity level of the alarm.
*
*
* @param severity
* A non-negative integer that reflects the severity level of the alarm.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAlarmModelResult withSeverity(Integer severity) {
setSeverity(severity);
return this;
}
/**
*
* Defines when your alarm is invoked.
*
*
* @param alarmRule
* Defines when your alarm is invoked.
*/
public void setAlarmRule(AlarmRule alarmRule) {
this.alarmRule = alarmRule;
}
/**
*
* Defines when your alarm is invoked.
*
*
* @return Defines when your alarm is invoked.
*/
public AlarmRule getAlarmRule() {
return this.alarmRule;
}
/**
*
* Defines when your alarm is invoked.
*
*
* @param alarmRule
* Defines when your alarm is invoked.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAlarmModelResult withAlarmRule(AlarmRule alarmRule) {
setAlarmRule(alarmRule);
return this;
}
/**
*
* Contains information about one or more notification actions.
*
*
* @param alarmNotification
* Contains information about one or more notification actions.
*/
public void setAlarmNotification(AlarmNotification alarmNotification) {
this.alarmNotification = alarmNotification;
}
/**
*
* Contains information about one or more notification actions.
*
*
* @return Contains information about one or more notification actions.
*/
public AlarmNotification getAlarmNotification() {
return this.alarmNotification;
}
/**
*
* Contains information about one or more notification actions.
*
*
* @param alarmNotification
* Contains information about one or more notification actions.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAlarmModelResult withAlarmNotification(AlarmNotification alarmNotification) {
setAlarmNotification(alarmNotification);
return this;
}
/**
*
* Contains information about one or more alarm actions.
*
*
* @param alarmEventActions
* Contains information about one or more alarm actions.
*/
public void setAlarmEventActions(AlarmEventActions alarmEventActions) {
this.alarmEventActions = alarmEventActions;
}
/**
*
* Contains information about one or more alarm actions.
*
*
* @return Contains information about one or more alarm actions.
*/
public AlarmEventActions getAlarmEventActions() {
return this.alarmEventActions;
}
/**
*
* Contains information about one or more alarm actions.
*
*
* @param alarmEventActions
* Contains information about one or more alarm actions.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAlarmModelResult withAlarmEventActions(AlarmEventActions alarmEventActions) {
setAlarmEventActions(alarmEventActions);
return this;
}
/**
*
* Contains the configuration information of alarm state changes.
*
*
* @param alarmCapabilities
* Contains the configuration information of alarm state changes.
*/
public void setAlarmCapabilities(AlarmCapabilities alarmCapabilities) {
this.alarmCapabilities = alarmCapabilities;
}
/**
*
* Contains the configuration information of alarm state changes.
*
*
* @return Contains the configuration information of alarm state changes.
*/
public AlarmCapabilities getAlarmCapabilities() {
return this.alarmCapabilities;
}
/**
*
* Contains the configuration information of alarm state changes.
*
*
* @param alarmCapabilities
* Contains the configuration information of alarm state changes.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAlarmModelResult withAlarmCapabilities(AlarmCapabilities alarmCapabilities) {
setAlarmCapabilities(alarmCapabilities);
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 (getCreationTime() != null)
sb.append("CreationTime: ").append(getCreationTime()).append(",");
if (getAlarmModelArn() != null)
sb.append("AlarmModelArn: ").append(getAlarmModelArn()).append(",");
if (getAlarmModelVersion() != null)
sb.append("AlarmModelVersion: ").append(getAlarmModelVersion()).append(",");
if (getLastUpdateTime() != null)
sb.append("LastUpdateTime: ").append(getLastUpdateTime()).append(",");
if (getStatus() != null)
sb.append("Status: ").append(getStatus()).append(",");
if (getStatusMessage() != null)
sb.append("StatusMessage: ").append(getStatusMessage()).append(",");
if (getAlarmModelName() != null)
sb.append("AlarmModelName: ").append(getAlarmModelName()).append(",");
if (getAlarmModelDescription() != null)
sb.append("AlarmModelDescription: ").append(getAlarmModelDescription()).append(",");
if (getRoleArn() != null)
sb.append("RoleArn: ").append(getRoleArn()).append(",");
if (getKey() != null)
sb.append("Key: ").append(getKey()).append(",");
if (getSeverity() != null)
sb.append("Severity: ").append(getSeverity()).append(",");
if (getAlarmRule() != null)
sb.append("AlarmRule: ").append(getAlarmRule()).append(",");
if (getAlarmNotification() != null)
sb.append("AlarmNotification: ").append(getAlarmNotification()).append(",");
if (getAlarmEventActions() != null)
sb.append("AlarmEventActions: ").append(getAlarmEventActions()).append(",");
if (getAlarmCapabilities() != null)
sb.append("AlarmCapabilities: ").append(getAlarmCapabilities());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DescribeAlarmModelResult == false)
return false;
DescribeAlarmModelResult other = (DescribeAlarmModelResult) obj;
if (other.getCreationTime() == null ^ this.getCreationTime() == null)
return false;
if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == false)
return false;
if (other.getAlarmModelArn() == null ^ this.getAlarmModelArn() == null)
return false;
if (other.getAlarmModelArn() != null && other.getAlarmModelArn().equals(this.getAlarmModelArn()) == false)
return false;
if (other.getAlarmModelVersion() == null ^ this.getAlarmModelVersion() == null)
return false;
if (other.getAlarmModelVersion() != null && other.getAlarmModelVersion().equals(this.getAlarmModelVersion()) == false)
return false;
if (other.getLastUpdateTime() == null ^ this.getLastUpdateTime() == null)
return false;
if (other.getLastUpdateTime() != null && other.getLastUpdateTime().equals(this.getLastUpdateTime()) == false)
return false;
if (other.getStatus() == null ^ this.getStatus() == null)
return false;
if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false)
return false;
if (other.getStatusMessage() == null ^ this.getStatusMessage() == null)
return false;
if (other.getStatusMessage() != null && other.getStatusMessage().equals(this.getStatusMessage()) == false)
return false;
if (other.getAlarmModelName() == null ^ this.getAlarmModelName() == null)
return false;
if (other.getAlarmModelName() != null && other.getAlarmModelName().equals(this.getAlarmModelName()) == false)
return false;
if (other.getAlarmModelDescription() == null ^ this.getAlarmModelDescription() == null)
return false;
if (other.getAlarmModelDescription() != null && other.getAlarmModelDescription().equals(this.getAlarmModelDescription()) == false)
return false;
if (other.getRoleArn() == null ^ this.getRoleArn() == null)
return false;
if (other.getRoleArn() != null && other.getRoleArn().equals(this.getRoleArn()) == false)
return false;
if (other.getKey() == null ^ this.getKey() == null)
return false;
if (other.getKey() != null && other.getKey().equals(this.getKey()) == false)
return false;
if (other.getSeverity() == null ^ this.getSeverity() == null)
return false;
if (other.getSeverity() != null && other.getSeverity().equals(this.getSeverity()) == false)
return false;
if (other.getAlarmRule() == null ^ this.getAlarmRule() == null)
return false;
if (other.getAlarmRule() != null && other.getAlarmRule().equals(this.getAlarmRule()) == false)
return false;
if (other.getAlarmNotification() == null ^ this.getAlarmNotification() == null)
return false;
if (other.getAlarmNotification() != null && other.getAlarmNotification().equals(this.getAlarmNotification()) == false)
return false;
if (other.getAlarmEventActions() == null ^ this.getAlarmEventActions() == null)
return false;
if (other.getAlarmEventActions() != null && other.getAlarmEventActions().equals(this.getAlarmEventActions()) == false)
return false;
if (other.getAlarmCapabilities() == null ^ this.getAlarmCapabilities() == null)
return false;
if (other.getAlarmCapabilities() != null && other.getAlarmCapabilities().equals(this.getAlarmCapabilities()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode());
hashCode = prime * hashCode + ((getAlarmModelArn() == null) ? 0 : getAlarmModelArn().hashCode());
hashCode = prime * hashCode + ((getAlarmModelVersion() == null) ? 0 : getAlarmModelVersion().hashCode());
hashCode = prime * hashCode + ((getLastUpdateTime() == null) ? 0 : getLastUpdateTime().hashCode());
hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode());
hashCode = prime * hashCode + ((getStatusMessage() == null) ? 0 : getStatusMessage().hashCode());
hashCode = prime * hashCode + ((getAlarmModelName() == null) ? 0 : getAlarmModelName().hashCode());
hashCode = prime * hashCode + ((getAlarmModelDescription() == null) ? 0 : getAlarmModelDescription().hashCode());
hashCode = prime * hashCode + ((getRoleArn() == null) ? 0 : getRoleArn().hashCode());
hashCode = prime * hashCode + ((getKey() == null) ? 0 : getKey().hashCode());
hashCode = prime * hashCode + ((getSeverity() == null) ? 0 : getSeverity().hashCode());
hashCode = prime * hashCode + ((getAlarmRule() == null) ? 0 : getAlarmRule().hashCode());
hashCode = prime * hashCode + ((getAlarmNotification() == null) ? 0 : getAlarmNotification().hashCode());
hashCode = prime * hashCode + ((getAlarmEventActions() == null) ? 0 : getAlarmEventActions().hashCode());
hashCode = prime * hashCode + ((getAlarmCapabilities() == null) ? 0 : getAlarmCapabilities().hashCode());
return hashCode;
}
@Override
public DescribeAlarmModelResult clone() {
try {
return (DescribeAlarmModelResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}