
com.amazonaws.services.opsworks.model.ShutdownEventConfiguration Maven / Gradle / Ivy
Show all versions of aws-java-sdk-opsworks Show documentation
/*
* Copyright 2010-2016 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.opsworks.model;
import java.io.Serializable;
/**
*
* The Shutdown event configuration.
*
*/
public class ShutdownEventConfiguration implements Serializable, Cloneable {
/**
*
* The time, in seconds, that AWS OpsWorks will wait after triggering a
* Shutdown event before shutting down an instance.
*
*/
private Integer executionTimeout;
/**
*
* Whether to enable Elastic Load Balancing connection draining. For more
* information, see Connection Draining
*
*/
private Boolean delayUntilElbConnectionsDrained;
/**
*
* The time, in seconds, that AWS OpsWorks will wait after triggering a
* Shutdown event before shutting down an instance.
*
*
* @param executionTimeout
* The time, in seconds, that AWS OpsWorks will wait after triggering
* a Shutdown event before shutting down an instance.
*/
public void setExecutionTimeout(Integer executionTimeout) {
this.executionTimeout = executionTimeout;
}
/**
*
* The time, in seconds, that AWS OpsWorks will wait after triggering a
* Shutdown event before shutting down an instance.
*
*
* @return The time, in seconds, that AWS OpsWorks will wait after
* triggering a Shutdown event before shutting down an instance.
*/
public Integer getExecutionTimeout() {
return this.executionTimeout;
}
/**
*
* The time, in seconds, that AWS OpsWorks will wait after triggering a
* Shutdown event before shutting down an instance.
*
*
* @param executionTimeout
* The time, in seconds, that AWS OpsWorks will wait after triggering
* a Shutdown event before shutting down an instance.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public ShutdownEventConfiguration withExecutionTimeout(
Integer executionTimeout) {
setExecutionTimeout(executionTimeout);
return this;
}
/**
*
* Whether to enable Elastic Load Balancing connection draining. For more
* information, see Connection Draining
*
*
* @param delayUntilElbConnectionsDrained
* Whether to enable Elastic Load Balancing connection draining. For
* more information, see Connection Draining
*/
public void setDelayUntilElbConnectionsDrained(
Boolean delayUntilElbConnectionsDrained) {
this.delayUntilElbConnectionsDrained = delayUntilElbConnectionsDrained;
}
/**
*
* Whether to enable Elastic Load Balancing connection draining. For more
* information, see Connection Draining
*
*
* @return Whether to enable Elastic Load Balancing connection draining. For
* more information, see Connection Draining
*/
public Boolean getDelayUntilElbConnectionsDrained() {
return this.delayUntilElbConnectionsDrained;
}
/**
*
* Whether to enable Elastic Load Balancing connection draining. For more
* information, see Connection Draining
*
*
* @param delayUntilElbConnectionsDrained
* Whether to enable Elastic Load Balancing connection draining. For
* more information, see Connection Draining
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public ShutdownEventConfiguration withDelayUntilElbConnectionsDrained(
Boolean delayUntilElbConnectionsDrained) {
setDelayUntilElbConnectionsDrained(delayUntilElbConnectionsDrained);
return this;
}
/**
*
* Whether to enable Elastic Load Balancing connection draining. For more
* information, see Connection Draining
*
*
* @return Whether to enable Elastic Load Balancing connection draining. For
* more information, see Connection Draining
*/
public Boolean isDelayUntilElbConnectionsDrained() {
return this.delayUntilElbConnectionsDrained;
}
/**
* Returns a string representation of this object; useful for testing and
* debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getExecutionTimeout() != null)
sb.append("ExecutionTimeout: " + getExecutionTimeout() + ",");
if (getDelayUntilElbConnectionsDrained() != null)
sb.append("DelayUntilElbConnectionsDrained: "
+ getDelayUntilElbConnectionsDrained());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ShutdownEventConfiguration == false)
return false;
ShutdownEventConfiguration other = (ShutdownEventConfiguration) obj;
if (other.getExecutionTimeout() == null
^ this.getExecutionTimeout() == null)
return false;
if (other.getExecutionTimeout() != null
&& other.getExecutionTimeout().equals(
this.getExecutionTimeout()) == false)
return false;
if (other.getDelayUntilElbConnectionsDrained() == null
^ this.getDelayUntilElbConnectionsDrained() == null)
return false;
if (other.getDelayUntilElbConnectionsDrained() != null
&& other.getDelayUntilElbConnectionsDrained().equals(
this.getDelayUntilElbConnectionsDrained()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime
* hashCode
+ ((getExecutionTimeout() == null) ? 0 : getExecutionTimeout()
.hashCode());
hashCode = prime
* hashCode
+ ((getDelayUntilElbConnectionsDrained() == null) ? 0
: getDelayUntilElbConnectionsDrained().hashCode());
return hashCode;
}
@Override
public ShutdownEventConfiguration clone() {
try {
return (ShutdownEventConfiguration) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException(
"Got a CloneNotSupportedException from Object.clone() "
+ "even though we're Cloneable!", e);
}
}
}