All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.codedeploy.model.AlarmConfiguration Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS CodeDeploy module holds the client classes that are used for communicating with AWS CodeDeploy Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2017-2022 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.codedeploy.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Information about alarms associated with the deployment group. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class AlarmConfiguration implements Serializable, Cloneable, StructuredPojo { /** *

* Indicates whether the alarm configuration is enabled. *

*/ private Boolean enabled; /** *

* Indicates whether a deployment should continue if information about the current state of alarms cannot be * retrieved from Amazon CloudWatch. The default value is false. *

*
    *
  • *

    * true: The deployment proceeds even if alarm status information can't be retrieved from Amazon * CloudWatch. *

    *
  • *
  • *

    * false: The deployment stops if alarm status information can't be retrieved from Amazon CloudWatch. *

    *
  • *
*/ private Boolean ignorePollAlarmFailure; /** *

* A list of alarms configured for the deployment group. A maximum of 10 alarms can be added to a deployment group. *

*/ private com.amazonaws.internal.SdkInternalList alarms; /** *

* Indicates whether the alarm configuration is enabled. *

* * @param enabled * Indicates whether the alarm configuration is enabled. */ public void setEnabled(Boolean enabled) { this.enabled = enabled; } /** *

* Indicates whether the alarm configuration is enabled. *

* * @return Indicates whether the alarm configuration is enabled. */ public Boolean getEnabled() { return this.enabled; } /** *

* Indicates whether the alarm configuration is enabled. *

* * @param enabled * Indicates whether the alarm configuration is enabled. * @return Returns a reference to this object so that method calls can be chained together. */ public AlarmConfiguration withEnabled(Boolean enabled) { setEnabled(enabled); return this; } /** *

* Indicates whether the alarm configuration is enabled. *

* * @return Indicates whether the alarm configuration is enabled. */ public Boolean isEnabled() { return this.enabled; } /** *

* Indicates whether a deployment should continue if information about the current state of alarms cannot be * retrieved from Amazon CloudWatch. The default value is false. *

*
    *
  • *

    * true: The deployment proceeds even if alarm status information can't be retrieved from Amazon * CloudWatch. *

    *
  • *
  • *

    * false: The deployment stops if alarm status information can't be retrieved from Amazon CloudWatch. *

    *
  • *
* * @param ignorePollAlarmFailure * Indicates whether a deployment should continue if information about the current state of alarms cannot be * retrieved from Amazon CloudWatch. The default value is false.

*
    *
  • *

    * true: The deployment proceeds even if alarm status information can't be retrieved from Amazon * CloudWatch. *

    *
  • *
  • *

    * false: The deployment stops if alarm status information can't be retrieved from Amazon * CloudWatch. *

    *
  • */ public void setIgnorePollAlarmFailure(Boolean ignorePollAlarmFailure) { this.ignorePollAlarmFailure = ignorePollAlarmFailure; } /** *

    * Indicates whether a deployment should continue if information about the current state of alarms cannot be * retrieved from Amazon CloudWatch. The default value is false. *

    *
      *
    • *

      * true: The deployment proceeds even if alarm status information can't be retrieved from Amazon * CloudWatch. *

      *
    • *
    • *

      * false: The deployment stops if alarm status information can't be retrieved from Amazon CloudWatch. *

      *
    • *
    * * @return Indicates whether a deployment should continue if information about the current state of alarms cannot be * retrieved from Amazon CloudWatch. The default value is false.

    *
      *
    • *

      * true: The deployment proceeds even if alarm status information can't be retrieved from * Amazon CloudWatch. *

      *
    • *
    • *

      * false: The deployment stops if alarm status information can't be retrieved from Amazon * CloudWatch. *

      *
    • */ public Boolean getIgnorePollAlarmFailure() { return this.ignorePollAlarmFailure; } /** *

      * Indicates whether a deployment should continue if information about the current state of alarms cannot be * retrieved from Amazon CloudWatch. The default value is false. *

      *
        *
      • *

        * true: The deployment proceeds even if alarm status information can't be retrieved from Amazon * CloudWatch. *

        *
      • *
      • *

        * false: The deployment stops if alarm status information can't be retrieved from Amazon CloudWatch. *

        *
      • *
      * * @param ignorePollAlarmFailure * Indicates whether a deployment should continue if information about the current state of alarms cannot be * retrieved from Amazon CloudWatch. The default value is false.

      *
        *
      • *

        * true: The deployment proceeds even if alarm status information can't be retrieved from Amazon * CloudWatch. *

        *
      • *
      • *

        * false: The deployment stops if alarm status information can't be retrieved from Amazon * CloudWatch. *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. */ public AlarmConfiguration withIgnorePollAlarmFailure(Boolean ignorePollAlarmFailure) { setIgnorePollAlarmFailure(ignorePollAlarmFailure); return this; } /** *

        * Indicates whether a deployment should continue if information about the current state of alarms cannot be * retrieved from Amazon CloudWatch. The default value is false. *

        *
          *
        • *

          * true: The deployment proceeds even if alarm status information can't be retrieved from Amazon * CloudWatch. *

          *
        • *
        • *

          * false: The deployment stops if alarm status information can't be retrieved from Amazon CloudWatch. *

          *
        • *
        * * @return Indicates whether a deployment should continue if information about the current state of alarms cannot be * retrieved from Amazon CloudWatch. The default value is false.

        *
          *
        • *

          * true: The deployment proceeds even if alarm status information can't be retrieved from * Amazon CloudWatch. *

          *
        • *
        • *

          * false: The deployment stops if alarm status information can't be retrieved from Amazon * CloudWatch. *

          *
        • */ public Boolean isIgnorePollAlarmFailure() { return this.ignorePollAlarmFailure; } /** *

          * A list of alarms configured for the deployment group. A maximum of 10 alarms can be added to a deployment group. *

          * * @return A list of alarms configured for the deployment group. A maximum of 10 alarms can be added to a deployment * group. */ public java.util.List getAlarms() { if (alarms == null) { alarms = new com.amazonaws.internal.SdkInternalList(); } return alarms; } /** *

          * A list of alarms configured for the deployment group. A maximum of 10 alarms can be added to a deployment group. *

          * * @param alarms * A list of alarms configured for the deployment group. A maximum of 10 alarms can be added to a deployment * group. */ public void setAlarms(java.util.Collection alarms) { if (alarms == null) { this.alarms = null; return; } this.alarms = new com.amazonaws.internal.SdkInternalList(alarms); } /** *

          * A list of alarms configured for the deployment group. A maximum of 10 alarms can be added to a deployment group. *

          *

          * NOTE: This method appends the values to the existing list (if any). Use * {@link #setAlarms(java.util.Collection)} or {@link #withAlarms(java.util.Collection)} if you want to override the * existing values. *

          * * @param alarms * A list of alarms configured for the deployment group. A maximum of 10 alarms can be added to a deployment * group. * @return Returns a reference to this object so that method calls can be chained together. */ public AlarmConfiguration withAlarms(Alarm... alarms) { if (this.alarms == null) { setAlarms(new com.amazonaws.internal.SdkInternalList(alarms.length)); } for (Alarm ele : alarms) { this.alarms.add(ele); } return this; } /** *

          * A list of alarms configured for the deployment group. A maximum of 10 alarms can be added to a deployment group. *

          * * @param alarms * A list of alarms configured for the deployment group. A maximum of 10 alarms can be added to a deployment * group. * @return Returns a reference to this object so that method calls can be chained together. */ public AlarmConfiguration withAlarms(java.util.Collection alarms) { setAlarms(alarms); 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 (getEnabled() != null) sb.append("Enabled: ").append(getEnabled()).append(","); if (getIgnorePollAlarmFailure() != null) sb.append("IgnorePollAlarmFailure: ").append(getIgnorePollAlarmFailure()).append(","); if (getAlarms() != null) sb.append("Alarms: ").append(getAlarms()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AlarmConfiguration == false) return false; AlarmConfiguration other = (AlarmConfiguration) obj; if (other.getEnabled() == null ^ this.getEnabled() == null) return false; if (other.getEnabled() != null && other.getEnabled().equals(this.getEnabled()) == false) return false; if (other.getIgnorePollAlarmFailure() == null ^ this.getIgnorePollAlarmFailure() == null) return false; if (other.getIgnorePollAlarmFailure() != null && other.getIgnorePollAlarmFailure().equals(this.getIgnorePollAlarmFailure()) == false) return false; if (other.getAlarms() == null ^ this.getAlarms() == null) return false; if (other.getAlarms() != null && other.getAlarms().equals(this.getAlarms()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getEnabled() == null) ? 0 : getEnabled().hashCode()); hashCode = prime * hashCode + ((getIgnorePollAlarmFailure() == null) ? 0 : getIgnorePollAlarmFailure().hashCode()); hashCode = prime * hashCode + ((getAlarms() == null) ? 0 : getAlarms().hashCode()); return hashCode; } @Override public AlarmConfiguration clone() { try { return (AlarmConfiguration) 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.codedeploy.model.transform.AlarmConfigurationMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy