/* * 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.iotevents.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Contains a summary of an alarm model version. *
* * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class AlarmModelVersionSummary implements Serializable, Cloneable, StructuredPojo { /** ** The name of the alarm model. *
*/ private String alarmModelName; /** ** 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 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; /** ** The time the alarm model was created, in the Unix epoch format. *
*/ private java.util.Date creationTime; /** ** 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.
*
* Contains information about the status of the alarm model version. *
*/ private String statusMessage; /** ** 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 AlarmModelVersionSummary withAlarmModelName(String alarmModelName) { setAlarmModelName(alarmModelName); 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 AlarmModelVersionSummary 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 AlarmModelVersionSummary withAlarmModelVersion(String alarmModelVersion) { setAlarmModelVersion(alarmModelVersion); 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 AlarmModelVersionSummary withRoleArn(String roleArn) { setRoleArn(roleArn); return this; } /** ** 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 AlarmModelVersionSummary withCreationTime(java.util.Date creationTime) { setCreationTime(creationTime); 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 AlarmModelVersionSummary 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.
*
* 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.
*
* 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.
*
* 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.
*
* 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.
*
* 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.
*
* 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.
*
* 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.
*
* Contains information about the status of the alarm model version. *
* * @param statusMessage * Contains information about the status of the alarm model version. */ public void setStatusMessage(String statusMessage) { this.statusMessage = statusMessage; } /** ** Contains information about the status of the alarm model version. *
* * @return Contains information about the status of the alarm model version. */ public String getStatusMessage() { return this.statusMessage; } /** ** Contains information about the status of the alarm model version. *
* * @param statusMessage * Contains information about the status of the alarm model version. * @return Returns a reference to this object so that method calls can be chained together. */ public AlarmModelVersionSummary withStatusMessage(String statusMessage) { setStatusMessage(statusMessage); 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 (getAlarmModelName() != null) sb.append("AlarmModelName: ").append(getAlarmModelName()).append(","); if (getAlarmModelArn() != null) sb.append("AlarmModelArn: ").append(getAlarmModelArn()).append(","); if (getAlarmModelVersion() != null) sb.append("AlarmModelVersion: ").append(getAlarmModelVersion()).append(","); if (getRoleArn() != null) sb.append("RoleArn: ").append(getRoleArn()).append(","); if (getCreationTime() != null) sb.append("CreationTime: ").append(getCreationTime()).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()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AlarmModelVersionSummary == false) return false; AlarmModelVersionSummary other = (AlarmModelVersionSummary) obj; if (other.getAlarmModelName() == null ^ this.getAlarmModelName() == null) return false; if (other.getAlarmModelName() != null && other.getAlarmModelName().equals(this.getAlarmModelName()) == 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.getRoleArn() == null ^ this.getRoleArn() == null) return false; if (other.getRoleArn() != null && other.getRoleArn().equals(this.getRoleArn()) == false) return false; if (other.getCreationTime() == null ^ this.getCreationTime() == null) return false; if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == 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; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAlarmModelName() == null) ? 0 : getAlarmModelName().hashCode()); hashCode = prime * hashCode + ((getAlarmModelArn() == null) ? 0 : getAlarmModelArn().hashCode()); hashCode = prime * hashCode + ((getAlarmModelVersion() == null) ? 0 : getAlarmModelVersion().hashCode()); hashCode = prime * hashCode + ((getRoleArn() == null) ? 0 : getRoleArn().hashCode()); hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().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()); return hashCode; } @Override public AlarmModelVersionSummary clone() { try { return (AlarmModelVersionSummary) 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.iotevents.model.transform.AlarmModelVersionSummaryMarshaller.getInstance().marshall(this, protocolMarshaller); } }