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

com.amazonaws.services.elasticloadbalancing.model.LoadBalancerAttributes Maven / Gradle / Ivy

/*
 * 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.elasticloadbalancing.model;

import java.io.Serializable;

/**
 * 

* The attributes for a load balancer. *

*/ public class LoadBalancerAttributes implements Serializable, Cloneable { /** * If enabled, the load balancer routes the request traffic evenly across * all back-end instances regardless of the Availability Zones.

For * more information, see Enable * Cross-Zone Load Balancing in the Elastic Load Balancing * Developer Guide. */ private CrossZoneLoadBalancing crossZoneLoadBalancing; /** * If enabled, the load balancer captures detailed information of all * requests and delivers the information to the Amazon S3 bucket that you * specify.

For more information, see Enable * Access Logs in the Elastic Load Balancing Developer Guide. */ private AccessLog accessLog; /** * If enabled, the load balancer allows existing requests to complete * before the load balancer shifts traffic away from a deregistered or * unhealthy back-end instance.

For more information, see Enable * Connection Draining in the Elastic Load Balancing Developer * Guide. */ private ConnectionDraining connectionDraining; /** * If enabled, the load balancer allows the connections to remain idle * (no data is sent over the connection) for the specified duration. *

By default, Elastic Load Balancing maintains a 60-second idle * connection timeout for both front-end and back-end connections of your * load balancer. For more information, see Configure * Idle Connection Timeout in the Elastic Load Balancing Developer * Guide. */ private ConnectionSettings connectionSettings; /** * This parameter is reserved. */ private com.amazonaws.internal.ListWithAutoConstructFlag additionalAttributes; /** * If enabled, the load balancer routes the request traffic evenly across * all back-end instances regardless of the Availability Zones.

For * more information, see Enable * Cross-Zone Load Balancing in the Elastic Load Balancing * Developer Guide. * * @return If enabled, the load balancer routes the request traffic evenly across * all back-end instances regardless of the Availability Zones.

For * more information, see Enable * Cross-Zone Load Balancing in the Elastic Load Balancing * Developer Guide. */ public CrossZoneLoadBalancing getCrossZoneLoadBalancing() { return crossZoneLoadBalancing; } /** * If enabled, the load balancer routes the request traffic evenly across * all back-end instances regardless of the Availability Zones.

For * more information, see Enable * Cross-Zone Load Balancing in the Elastic Load Balancing * Developer Guide. * * @param crossZoneLoadBalancing If enabled, the load balancer routes the request traffic evenly across * all back-end instances regardless of the Availability Zones.

For * more information, see Enable * Cross-Zone Load Balancing in the Elastic Load Balancing * Developer Guide. */ public void setCrossZoneLoadBalancing(CrossZoneLoadBalancing crossZoneLoadBalancing) { this.crossZoneLoadBalancing = crossZoneLoadBalancing; } /** * If enabled, the load balancer routes the request traffic evenly across * all back-end instances regardless of the Availability Zones.

For * more information, see Enable * Cross-Zone Load Balancing in the Elastic Load Balancing * Developer Guide. *

* Returns a reference to this object so that method calls can be chained together. * * @param crossZoneLoadBalancing If enabled, the load balancer routes the request traffic evenly across * all back-end instances regardless of the Availability Zones.

For * more information, see Enable * Cross-Zone Load Balancing in the Elastic Load Balancing * Developer Guide. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerAttributes withCrossZoneLoadBalancing(CrossZoneLoadBalancing crossZoneLoadBalancing) { this.crossZoneLoadBalancing = crossZoneLoadBalancing; return this; } /** * If enabled, the load balancer captures detailed information of all * requests and delivers the information to the Amazon S3 bucket that you * specify.

For more information, see Enable * Access Logs in the Elastic Load Balancing Developer Guide. * * @return If enabled, the load balancer captures detailed information of all * requests and delivers the information to the Amazon S3 bucket that you * specify.

For more information, see Enable * Access Logs in the Elastic Load Balancing Developer Guide. */ public AccessLog getAccessLog() { return accessLog; } /** * If enabled, the load balancer captures detailed information of all * requests and delivers the information to the Amazon S3 bucket that you * specify.

For more information, see Enable * Access Logs in the Elastic Load Balancing Developer Guide. * * @param accessLog If enabled, the load balancer captures detailed information of all * requests and delivers the information to the Amazon S3 bucket that you * specify.

For more information, see Enable * Access Logs in the Elastic Load Balancing Developer Guide. */ public void setAccessLog(AccessLog accessLog) { this.accessLog = accessLog; } /** * If enabled, the load balancer captures detailed information of all * requests and delivers the information to the Amazon S3 bucket that you * specify.

For more information, see Enable * Access Logs in the Elastic Load Balancing Developer Guide. *

* Returns a reference to this object so that method calls can be chained together. * * @param accessLog If enabled, the load balancer captures detailed information of all * requests and delivers the information to the Amazon S3 bucket that you * specify.

For more information, see Enable * Access Logs in the Elastic Load Balancing Developer Guide. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerAttributes withAccessLog(AccessLog accessLog) { this.accessLog = accessLog; return this; } /** * If enabled, the load balancer allows existing requests to complete * before the load balancer shifts traffic away from a deregistered or * unhealthy back-end instance.

For more information, see Enable * Connection Draining in the Elastic Load Balancing Developer * Guide. * * @return If enabled, the load balancer allows existing requests to complete * before the load balancer shifts traffic away from a deregistered or * unhealthy back-end instance.

For more information, see Enable * Connection Draining in the Elastic Load Balancing Developer * Guide. */ public ConnectionDraining getConnectionDraining() { return connectionDraining; } /** * If enabled, the load balancer allows existing requests to complete * before the load balancer shifts traffic away from a deregistered or * unhealthy back-end instance.

For more information, see Enable * Connection Draining in the Elastic Load Balancing Developer * Guide. * * @param connectionDraining If enabled, the load balancer allows existing requests to complete * before the load balancer shifts traffic away from a deregistered or * unhealthy back-end instance.

For more information, see Enable * Connection Draining in the Elastic Load Balancing Developer * Guide. */ public void setConnectionDraining(ConnectionDraining connectionDraining) { this.connectionDraining = connectionDraining; } /** * If enabled, the load balancer allows existing requests to complete * before the load balancer shifts traffic away from a deregistered or * unhealthy back-end instance.

For more information, see Enable * Connection Draining in the Elastic Load Balancing Developer * Guide. *

* Returns a reference to this object so that method calls can be chained together. * * @param connectionDraining If enabled, the load balancer allows existing requests to complete * before the load balancer shifts traffic away from a deregistered or * unhealthy back-end instance.

For more information, see Enable * Connection Draining in the Elastic Load Balancing Developer * Guide. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerAttributes withConnectionDraining(ConnectionDraining connectionDraining) { this.connectionDraining = connectionDraining; return this; } /** * If enabled, the load balancer allows the connections to remain idle * (no data is sent over the connection) for the specified duration. *

By default, Elastic Load Balancing maintains a 60-second idle * connection timeout for both front-end and back-end connections of your * load balancer. For more information, see Configure * Idle Connection Timeout in the Elastic Load Balancing Developer * Guide. * * @return If enabled, the load balancer allows the connections to remain idle * (no data is sent over the connection) for the specified duration. *

By default, Elastic Load Balancing maintains a 60-second idle * connection timeout for both front-end and back-end connections of your * load balancer. For more information, see Configure * Idle Connection Timeout in the Elastic Load Balancing Developer * Guide. */ public ConnectionSettings getConnectionSettings() { return connectionSettings; } /** * If enabled, the load balancer allows the connections to remain idle * (no data is sent over the connection) for the specified duration. *

By default, Elastic Load Balancing maintains a 60-second idle * connection timeout for both front-end and back-end connections of your * load balancer. For more information, see Configure * Idle Connection Timeout in the Elastic Load Balancing Developer * Guide. * * @param connectionSettings If enabled, the load balancer allows the connections to remain idle * (no data is sent over the connection) for the specified duration. *

By default, Elastic Load Balancing maintains a 60-second idle * connection timeout for both front-end and back-end connections of your * load balancer. For more information, see Configure * Idle Connection Timeout in the Elastic Load Balancing Developer * Guide. */ public void setConnectionSettings(ConnectionSettings connectionSettings) { this.connectionSettings = connectionSettings; } /** * If enabled, the load balancer allows the connections to remain idle * (no data is sent over the connection) for the specified duration. *

By default, Elastic Load Balancing maintains a 60-second idle * connection timeout for both front-end and back-end connections of your * load balancer. For more information, see Configure * Idle Connection Timeout in the Elastic Load Balancing Developer * Guide. *

* Returns a reference to this object so that method calls can be chained together. * * @param connectionSettings If enabled, the load balancer allows the connections to remain idle * (no data is sent over the connection) for the specified duration. *

By default, Elastic Load Balancing maintains a 60-second idle * connection timeout for both front-end and back-end connections of your * load balancer. For more information, see Configure * Idle Connection Timeout in the Elastic Load Balancing Developer * Guide. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerAttributes withConnectionSettings(ConnectionSettings connectionSettings) { this.connectionSettings = connectionSettings; return this; } /** * This parameter is reserved. * * @return This parameter is reserved. */ public java.util.List getAdditionalAttributes() { if (additionalAttributes == null) { additionalAttributes = new com.amazonaws.internal.ListWithAutoConstructFlag(); additionalAttributes.setAutoConstruct(true); } return additionalAttributes; } /** * This parameter is reserved. * * @param additionalAttributes This parameter is reserved. */ public void setAdditionalAttributes(java.util.Collection additionalAttributes) { if (additionalAttributes == null) { this.additionalAttributes = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag additionalAttributesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(additionalAttributes.size()); additionalAttributesCopy.addAll(additionalAttributes); this.additionalAttributes = additionalAttributesCopy; } /** * This parameter is reserved. *

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

* Returns a reference to this object so that method calls can be chained together. * * @param additionalAttributes This parameter is reserved. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerAttributes withAdditionalAttributes(AdditionalAttribute... additionalAttributes) { if (getAdditionalAttributes() == null) setAdditionalAttributes(new java.util.ArrayList(additionalAttributes.length)); for (AdditionalAttribute value : additionalAttributes) { getAdditionalAttributes().add(value); } return this; } /** * This parameter is reserved. *

* Returns a reference to this object so that method calls can be chained together. * * @param additionalAttributes This parameter is reserved. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerAttributes withAdditionalAttributes(java.util.Collection additionalAttributes) { if (additionalAttributes == null) { this.additionalAttributes = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag additionalAttributesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(additionalAttributes.size()); additionalAttributesCopy.addAll(additionalAttributes); this.additionalAttributes = additionalAttributesCopy; } return this; } /** * 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 (getCrossZoneLoadBalancing() != null) sb.append("CrossZoneLoadBalancing: " + getCrossZoneLoadBalancing() + ","); if (getAccessLog() != null) sb.append("AccessLog: " + getAccessLog() + ","); if (getConnectionDraining() != null) sb.append("ConnectionDraining: " + getConnectionDraining() + ","); if (getConnectionSettings() != null) sb.append("ConnectionSettings: " + getConnectionSettings() + ","); if (getAdditionalAttributes() != null) sb.append("AdditionalAttributes: " + getAdditionalAttributes() ); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getCrossZoneLoadBalancing() == null) ? 0 : getCrossZoneLoadBalancing().hashCode()); hashCode = prime * hashCode + ((getAccessLog() == null) ? 0 : getAccessLog().hashCode()); hashCode = prime * hashCode + ((getConnectionDraining() == null) ? 0 : getConnectionDraining().hashCode()); hashCode = prime * hashCode + ((getConnectionSettings() == null) ? 0 : getConnectionSettings().hashCode()); hashCode = prime * hashCode + ((getAdditionalAttributes() == null) ? 0 : getAdditionalAttributes().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof LoadBalancerAttributes == false) return false; LoadBalancerAttributes other = (LoadBalancerAttributes)obj; if (other.getCrossZoneLoadBalancing() == null ^ this.getCrossZoneLoadBalancing() == null) return false; if (other.getCrossZoneLoadBalancing() != null && other.getCrossZoneLoadBalancing().equals(this.getCrossZoneLoadBalancing()) == false) return false; if (other.getAccessLog() == null ^ this.getAccessLog() == null) return false; if (other.getAccessLog() != null && other.getAccessLog().equals(this.getAccessLog()) == false) return false; if (other.getConnectionDraining() == null ^ this.getConnectionDraining() == null) return false; if (other.getConnectionDraining() != null && other.getConnectionDraining().equals(this.getConnectionDraining()) == false) return false; if (other.getConnectionSettings() == null ^ this.getConnectionSettings() == null) return false; if (other.getConnectionSettings() != null && other.getConnectionSettings().equals(this.getConnectionSettings()) == false) return false; if (other.getAdditionalAttributes() == null ^ this.getAdditionalAttributes() == null) return false; if (other.getAdditionalAttributes() != null && other.getAdditionalAttributes().equals(this.getAdditionalAttributes()) == false) return false; return true; } @Override public LoadBalancerAttributes clone() { try { return (LoadBalancerAttributes) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy