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

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

/*
 * Copyright 2010-2015 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;

/**
 * 

* Information about a load balancer. *

*/ public class LoadBalancerDescription implements Serializable, Cloneable { /** * The name of the load balancer. */ private String loadBalancerName; /** * The external DNS name of the load balancer. */ private String dNSName; /** * The Amazon Route 53 hosted zone associated with the load balancer. *

For more information, see Using * Domain Names With Elastic Load Balancing in the Elastic Load * Balancing Developer Guide. */ private String canonicalHostedZoneName; /** * The ID of the Amazon Route 53 hosted zone name associated with the * load balancer. */ private String canonicalHostedZoneNameID; /** * The listeners for the load balancer. */ private com.amazonaws.internal.ListWithAutoConstructFlag listenerDescriptions; /** * The policies defined for the load balancer. */ private Policies policies; /** * Information about the back-end servers. */ private com.amazonaws.internal.ListWithAutoConstructFlag backendServerDescriptions; /** * The Availability Zones for the load balancer. */ private com.amazonaws.internal.ListWithAutoConstructFlag availabilityZones; /** * The IDs of the subnets for the load balancer. */ private com.amazonaws.internal.ListWithAutoConstructFlag subnets; /** * The ID of the VPC for the load balancer. */ private String vPCId; /** * The IDs of the instances for the load balancer. */ private com.amazonaws.internal.ListWithAutoConstructFlag instances; /** * Information about the health checks conducted on the load balancer. */ private HealthCheck healthCheck; /** * The security group that you can use as part of your inbound rules for * your load balancer's back-end application instances. To only allow * traffic from load balancers, add a security group rule to your back * end instance that specifies this source security group as the inbound * source. */ private SourceSecurityGroup sourceSecurityGroup; /** * The security groups for the load balancer. Valid only for load * balancers in a VPC. */ private com.amazonaws.internal.ListWithAutoConstructFlag securityGroups; /** * The date and time the load balancer was created. */ private java.util.Date createdTime; /** * The type of load balancer. Valid only for load balancers in a VPC. *

If Scheme is internet-facing, the load * balancer has a public DNS name that resolves to a public IP address. *

If Scheme is internal, the load balancer * has a public DNS name that resolves to a private IP address. */ private String scheme; /** * Default constructor for a new LoadBalancerDescription object. Callers should use the * setter or fluent setter (with...) methods to initialize this object after creating it. */ public LoadBalancerDescription() {} /** * The name of the load balancer. * * @return The name of the load balancer. */ public String getLoadBalancerName() { return loadBalancerName; } /** * The name of the load balancer. * * @param loadBalancerName The name of the load balancer. */ public void setLoadBalancerName(String loadBalancerName) { this.loadBalancerName = loadBalancerName; } /** * The name of the load balancer. *

* Returns a reference to this object so that method calls can be chained together. * * @param loadBalancerName The name of the load balancer. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withLoadBalancerName(String loadBalancerName) { this.loadBalancerName = loadBalancerName; return this; } /** * The external DNS name of the load balancer. * * @return The external DNS name of the load balancer. */ public String getDNSName() { return dNSName; } /** * The external DNS name of the load balancer. * * @param dNSName The external DNS name of the load balancer. */ public void setDNSName(String dNSName) { this.dNSName = dNSName; } /** * The external DNS name of the load balancer. *

* Returns a reference to this object so that method calls can be chained together. * * @param dNSName The external DNS name of the load balancer. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withDNSName(String dNSName) { this.dNSName = dNSName; return this; } /** * The Amazon Route 53 hosted zone associated with the load balancer. *

For more information, see Using * Domain Names With Elastic Load Balancing in the Elastic Load * Balancing Developer Guide. * * @return The Amazon Route 53 hosted zone associated with the load balancer. *

For more information, see Using * Domain Names With Elastic Load Balancing in the Elastic Load * Balancing Developer Guide. */ public String getCanonicalHostedZoneName() { return canonicalHostedZoneName; } /** * The Amazon Route 53 hosted zone associated with the load balancer. *

For more information, see Using * Domain Names With Elastic Load Balancing in the Elastic Load * Balancing Developer Guide. * * @param canonicalHostedZoneName The Amazon Route 53 hosted zone associated with the load balancer. *

For more information, see Using * Domain Names With Elastic Load Balancing in the Elastic Load * Balancing Developer Guide. */ public void setCanonicalHostedZoneName(String canonicalHostedZoneName) { this.canonicalHostedZoneName = canonicalHostedZoneName; } /** * The Amazon Route 53 hosted zone associated with the load balancer. *

For more information, see Using * Domain Names With Elastic Load Balancing in the Elastic Load * Balancing Developer Guide. *

* Returns a reference to this object so that method calls can be chained together. * * @param canonicalHostedZoneName The Amazon Route 53 hosted zone associated with the load balancer. *

For more information, see Using * Domain Names With Elastic 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 LoadBalancerDescription withCanonicalHostedZoneName(String canonicalHostedZoneName) { this.canonicalHostedZoneName = canonicalHostedZoneName; return this; } /** * The ID of the Amazon Route 53 hosted zone name associated with the * load balancer. * * @return The ID of the Amazon Route 53 hosted zone name associated with the * load balancer. */ public String getCanonicalHostedZoneNameID() { return canonicalHostedZoneNameID; } /** * The ID of the Amazon Route 53 hosted zone name associated with the * load balancer. * * @param canonicalHostedZoneNameID The ID of the Amazon Route 53 hosted zone name associated with the * load balancer. */ public void setCanonicalHostedZoneNameID(String canonicalHostedZoneNameID) { this.canonicalHostedZoneNameID = canonicalHostedZoneNameID; } /** * The ID of the Amazon Route 53 hosted zone name associated with the * load balancer. *

* Returns a reference to this object so that method calls can be chained together. * * @param canonicalHostedZoneNameID The ID of the Amazon Route 53 hosted zone name associated with the * load balancer. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withCanonicalHostedZoneNameID(String canonicalHostedZoneNameID) { this.canonicalHostedZoneNameID = canonicalHostedZoneNameID; return this; } /** * The listeners for the load balancer. * * @return The listeners for the load balancer. */ public java.util.List getListenerDescriptions() { if (listenerDescriptions == null) { listenerDescriptions = new com.amazonaws.internal.ListWithAutoConstructFlag(); listenerDescriptions.setAutoConstruct(true); } return listenerDescriptions; } /** * The listeners for the load balancer. * * @param listenerDescriptions The listeners for the load balancer. */ public void setListenerDescriptions(java.util.Collection listenerDescriptions) { if (listenerDescriptions == null) { this.listenerDescriptions = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag listenerDescriptionsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(listenerDescriptions.size()); listenerDescriptionsCopy.addAll(listenerDescriptions); this.listenerDescriptions = listenerDescriptionsCopy; } /** * The listeners for the load balancer. *

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setListenerDescriptions(java.util.Collection)} or * {@link #withListenerDescriptions(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 listenerDescriptions The listeners for the load balancer. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withListenerDescriptions(ListenerDescription... listenerDescriptions) { if (getListenerDescriptions() == null) setListenerDescriptions(new java.util.ArrayList(listenerDescriptions.length)); for (ListenerDescription value : listenerDescriptions) { getListenerDescriptions().add(value); } return this; } /** * The listeners for the load balancer. *

* Returns a reference to this object so that method calls can be chained together. * * @param listenerDescriptions The listeners for the load balancer. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withListenerDescriptions(java.util.Collection listenerDescriptions) { if (listenerDescriptions == null) { this.listenerDescriptions = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag listenerDescriptionsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(listenerDescriptions.size()); listenerDescriptionsCopy.addAll(listenerDescriptions); this.listenerDescriptions = listenerDescriptionsCopy; } return this; } /** * The policies defined for the load balancer. * * @return The policies defined for the load balancer. */ public Policies getPolicies() { return policies; } /** * The policies defined for the load balancer. * * @param policies The policies defined for the load balancer. */ public void setPolicies(Policies policies) { this.policies = policies; } /** * The policies defined for the load balancer. *

* Returns a reference to this object so that method calls can be chained together. * * @param policies The policies defined for the load balancer. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withPolicies(Policies policies) { this.policies = policies; return this; } /** * Information about the back-end servers. * * @return Information about the back-end servers. */ public java.util.List getBackendServerDescriptions() { if (backendServerDescriptions == null) { backendServerDescriptions = new com.amazonaws.internal.ListWithAutoConstructFlag(); backendServerDescriptions.setAutoConstruct(true); } return backendServerDescriptions; } /** * Information about the back-end servers. * * @param backendServerDescriptions Information about the back-end servers. */ public void setBackendServerDescriptions(java.util.Collection backendServerDescriptions) { if (backendServerDescriptions == null) { this.backendServerDescriptions = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag backendServerDescriptionsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(backendServerDescriptions.size()); backendServerDescriptionsCopy.addAll(backendServerDescriptions); this.backendServerDescriptions = backendServerDescriptionsCopy; } /** * Information about the back-end servers. *

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setBackendServerDescriptions(java.util.Collection)} * or {@link #withBackendServerDescriptions(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 backendServerDescriptions Information about the back-end servers. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withBackendServerDescriptions(BackendServerDescription... backendServerDescriptions) { if (getBackendServerDescriptions() == null) setBackendServerDescriptions(new java.util.ArrayList(backendServerDescriptions.length)); for (BackendServerDescription value : backendServerDescriptions) { getBackendServerDescriptions().add(value); } return this; } /** * Information about the back-end servers. *

* Returns a reference to this object so that method calls can be chained together. * * @param backendServerDescriptions Information about the back-end servers. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withBackendServerDescriptions(java.util.Collection backendServerDescriptions) { if (backendServerDescriptions == null) { this.backendServerDescriptions = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag backendServerDescriptionsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(backendServerDescriptions.size()); backendServerDescriptionsCopy.addAll(backendServerDescriptions); this.backendServerDescriptions = backendServerDescriptionsCopy; } return this; } /** * The Availability Zones for the load balancer. * * @return The Availability Zones for the load balancer. */ public java.util.List getAvailabilityZones() { if (availabilityZones == null) { availabilityZones = new com.amazonaws.internal.ListWithAutoConstructFlag(); availabilityZones.setAutoConstruct(true); } return availabilityZones; } /** * The Availability Zones for the load balancer. * * @param availabilityZones The Availability Zones for the load balancer. */ public void setAvailabilityZones(java.util.Collection availabilityZones) { if (availabilityZones == null) { this.availabilityZones = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag availabilityZonesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(availabilityZones.size()); availabilityZonesCopy.addAll(availabilityZones); this.availabilityZones = availabilityZonesCopy; } /** * The Availability Zones for the load balancer. *

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setAvailabilityZones(java.util.Collection)} or * {@link #withAvailabilityZones(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 availabilityZones The Availability Zones for the load balancer. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withAvailabilityZones(String... availabilityZones) { if (getAvailabilityZones() == null) setAvailabilityZones(new java.util.ArrayList(availabilityZones.length)); for (String value : availabilityZones) { getAvailabilityZones().add(value); } return this; } /** * The Availability Zones for the load balancer. *

* Returns a reference to this object so that method calls can be chained together. * * @param availabilityZones The Availability Zones for the load balancer. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withAvailabilityZones(java.util.Collection availabilityZones) { if (availabilityZones == null) { this.availabilityZones = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag availabilityZonesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(availabilityZones.size()); availabilityZonesCopy.addAll(availabilityZones); this.availabilityZones = availabilityZonesCopy; } return this; } /** * The IDs of the subnets for the load balancer. * * @return The IDs of the subnets for the load balancer. */ public java.util.List getSubnets() { if (subnets == null) { subnets = new com.amazonaws.internal.ListWithAutoConstructFlag(); subnets.setAutoConstruct(true); } return subnets; } /** * The IDs of the subnets for the load balancer. * * @param subnets The IDs of the subnets for the load balancer. */ public void setSubnets(java.util.Collection subnets) { if (subnets == null) { this.subnets = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag subnetsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(subnets.size()); subnetsCopy.addAll(subnets); this.subnets = subnetsCopy; } /** * The IDs of the subnets for the load balancer. *

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setSubnets(java.util.Collection)} or {@link * #withSubnets(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 subnets The IDs of the subnets for the load balancer. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withSubnets(String... subnets) { if (getSubnets() == null) setSubnets(new java.util.ArrayList(subnets.length)); for (String value : subnets) { getSubnets().add(value); } return this; } /** * The IDs of the subnets for the load balancer. *

* Returns a reference to this object so that method calls can be chained together. * * @param subnets The IDs of the subnets for the load balancer. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withSubnets(java.util.Collection subnets) { if (subnets == null) { this.subnets = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag subnetsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(subnets.size()); subnetsCopy.addAll(subnets); this.subnets = subnetsCopy; } return this; } /** * The ID of the VPC for the load balancer. * * @return The ID of the VPC for the load balancer. */ public String getVPCId() { return vPCId; } /** * The ID of the VPC for the load balancer. * * @param vPCId The ID of the VPC for the load balancer. */ public void setVPCId(String vPCId) { this.vPCId = vPCId; } /** * The ID of the VPC for the load balancer. *

* Returns a reference to this object so that method calls can be chained together. * * @param vPCId The ID of the VPC for the load balancer. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withVPCId(String vPCId) { this.vPCId = vPCId; return this; } /** * The IDs of the instances for the load balancer. * * @return The IDs of the instances for the load balancer. */ public java.util.List getInstances() { if (instances == null) { instances = new com.amazonaws.internal.ListWithAutoConstructFlag(); instances.setAutoConstruct(true); } return instances; } /** * The IDs of the instances for the load balancer. * * @param instances The IDs of the instances for the load balancer. */ public void setInstances(java.util.Collection instances) { if (instances == null) { this.instances = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag instancesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(instances.size()); instancesCopy.addAll(instances); this.instances = instancesCopy; } /** * The IDs of the instances for the load balancer. *

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setInstances(java.util.Collection)} or {@link * #withInstances(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 instances The IDs of the instances for the load balancer. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withInstances(Instance... instances) { if (getInstances() == null) setInstances(new java.util.ArrayList(instances.length)); for (Instance value : instances) { getInstances().add(value); } return this; } /** * The IDs of the instances for the load balancer. *

* Returns a reference to this object so that method calls can be chained together. * * @param instances The IDs of the instances for the load balancer. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withInstances(java.util.Collection instances) { if (instances == null) { this.instances = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag instancesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(instances.size()); instancesCopy.addAll(instances); this.instances = instancesCopy; } return this; } /** * Information about the health checks conducted on the load balancer. * * @return Information about the health checks conducted on the load balancer. */ public HealthCheck getHealthCheck() { return healthCheck; } /** * Information about the health checks conducted on the load balancer. * * @param healthCheck Information about the health checks conducted on the load balancer. */ public void setHealthCheck(HealthCheck healthCheck) { this.healthCheck = healthCheck; } /** * Information about the health checks conducted on the load balancer. *

* Returns a reference to this object so that method calls can be chained together. * * @param healthCheck Information about the health checks conducted on the load balancer. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withHealthCheck(HealthCheck healthCheck) { this.healthCheck = healthCheck; return this; } /** * The security group that you can use as part of your inbound rules for * your load balancer's back-end application instances. To only allow * traffic from load balancers, add a security group rule to your back * end instance that specifies this source security group as the inbound * source. * * @return The security group that you can use as part of your inbound rules for * your load balancer's back-end application instances. To only allow * traffic from load balancers, add a security group rule to your back * end instance that specifies this source security group as the inbound * source. */ public SourceSecurityGroup getSourceSecurityGroup() { return sourceSecurityGroup; } /** * The security group that you can use as part of your inbound rules for * your load balancer's back-end application instances. To only allow * traffic from load balancers, add a security group rule to your back * end instance that specifies this source security group as the inbound * source. * * @param sourceSecurityGroup The security group that you can use as part of your inbound rules for * your load balancer's back-end application instances. To only allow * traffic from load balancers, add a security group rule to your back * end instance that specifies this source security group as the inbound * source. */ public void setSourceSecurityGroup(SourceSecurityGroup sourceSecurityGroup) { this.sourceSecurityGroup = sourceSecurityGroup; } /** * The security group that you can use as part of your inbound rules for * your load balancer's back-end application instances. To only allow * traffic from load balancers, add a security group rule to your back * end instance that specifies this source security group as the inbound * source. *

* Returns a reference to this object so that method calls can be chained together. * * @param sourceSecurityGroup The security group that you can use as part of your inbound rules for * your load balancer's back-end application instances. To only allow * traffic from load balancers, add a security group rule to your back * end instance that specifies this source security group as the inbound * source. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withSourceSecurityGroup(SourceSecurityGroup sourceSecurityGroup) { this.sourceSecurityGroup = sourceSecurityGroup; return this; } /** * The security groups for the load balancer. Valid only for load * balancers in a VPC. * * @return The security groups for the load balancer. Valid only for load * balancers in a VPC. */ public java.util.List getSecurityGroups() { if (securityGroups == null) { securityGroups = new com.amazonaws.internal.ListWithAutoConstructFlag(); securityGroups.setAutoConstruct(true); } return securityGroups; } /** * The security groups for the load balancer. Valid only for load * balancers in a VPC. * * @param securityGroups The security groups for the load balancer. Valid only for load * balancers in a VPC. */ public void setSecurityGroups(java.util.Collection securityGroups) { if (securityGroups == null) { this.securityGroups = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag securityGroupsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(securityGroups.size()); securityGroupsCopy.addAll(securityGroups); this.securityGroups = securityGroupsCopy; } /** * The security groups for the load balancer. Valid only for load * balancers in a VPC. *

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setSecurityGroups(java.util.Collection)} or {@link * #withSecurityGroups(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 securityGroups The security groups for the load balancer. Valid only for load * balancers in a VPC. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withSecurityGroups(String... securityGroups) { if (getSecurityGroups() == null) setSecurityGroups(new java.util.ArrayList(securityGroups.length)); for (String value : securityGroups) { getSecurityGroups().add(value); } return this; } /** * The security groups for the load balancer. Valid only for load * balancers in a VPC. *

* Returns a reference to this object so that method calls can be chained together. * * @param securityGroups The security groups for the load balancer. Valid only for load * balancers in a VPC. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withSecurityGroups(java.util.Collection securityGroups) { if (securityGroups == null) { this.securityGroups = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag securityGroupsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(securityGroups.size()); securityGroupsCopy.addAll(securityGroups); this.securityGroups = securityGroupsCopy; } return this; } /** * The date and time the load balancer was created. * * @return The date and time the load balancer was created. */ public java.util.Date getCreatedTime() { return createdTime; } /** * The date and time the load balancer was created. * * @param createdTime The date and time the load balancer was created. */ public void setCreatedTime(java.util.Date createdTime) { this.createdTime = createdTime; } /** * The date and time the load balancer was created. *

* Returns a reference to this object so that method calls can be chained together. * * @param createdTime The date and time the load balancer was created. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withCreatedTime(java.util.Date createdTime) { this.createdTime = createdTime; return this; } /** * The type of load balancer. Valid only for load balancers in a VPC. *

If Scheme is internet-facing, the load * balancer has a public DNS name that resolves to a public IP address. *

If Scheme is internal, the load balancer * has a public DNS name that resolves to a private IP address. * * @return The type of load balancer. Valid only for load balancers in a VPC. *

If Scheme is internet-facing, the load * balancer has a public DNS name that resolves to a public IP address. *

If Scheme is internal, the load balancer * has a public DNS name that resolves to a private IP address. */ public String getScheme() { return scheme; } /** * The type of load balancer. Valid only for load balancers in a VPC. *

If Scheme is internet-facing, the load * balancer has a public DNS name that resolves to a public IP address. *

If Scheme is internal, the load balancer * has a public DNS name that resolves to a private IP address. * * @param scheme The type of load balancer. Valid only for load balancers in a VPC. *

If Scheme is internet-facing, the load * balancer has a public DNS name that resolves to a public IP address. *

If Scheme is internal, the load balancer * has a public DNS name that resolves to a private IP address. */ public void setScheme(String scheme) { this.scheme = scheme; } /** * The type of load balancer. Valid only for load balancers in a VPC. *

If Scheme is internet-facing, the load * balancer has a public DNS name that resolves to a public IP address. *

If Scheme is internal, the load balancer * has a public DNS name that resolves to a private IP address. *

* Returns a reference to this object so that method calls can be chained together. * * @param scheme The type of load balancer. Valid only for load balancers in a VPC. *

If Scheme is internet-facing, the load * balancer has a public DNS name that resolves to a public IP address. *

If Scheme is internal, the load balancer * has a public DNS name that resolves to a private IP address. * * @return A reference to this updated object so that method calls can be chained * together. */ public LoadBalancerDescription withScheme(String scheme) { this.scheme = scheme; 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 (getLoadBalancerName() != null) sb.append("LoadBalancerName: " + getLoadBalancerName() + ","); if (getDNSName() != null) sb.append("DNSName: " + getDNSName() + ","); if (getCanonicalHostedZoneName() != null) sb.append("CanonicalHostedZoneName: " + getCanonicalHostedZoneName() + ","); if (getCanonicalHostedZoneNameID() != null) sb.append("CanonicalHostedZoneNameID: " + getCanonicalHostedZoneNameID() + ","); if (getListenerDescriptions() != null) sb.append("ListenerDescriptions: " + getListenerDescriptions() + ","); if (getPolicies() != null) sb.append("Policies: " + getPolicies() + ","); if (getBackendServerDescriptions() != null) sb.append("BackendServerDescriptions: " + getBackendServerDescriptions() + ","); if (getAvailabilityZones() != null) sb.append("AvailabilityZones: " + getAvailabilityZones() + ","); if (getSubnets() != null) sb.append("Subnets: " + getSubnets() + ","); if (getVPCId() != null) sb.append("VPCId: " + getVPCId() + ","); if (getInstances() != null) sb.append("Instances: " + getInstances() + ","); if (getHealthCheck() != null) sb.append("HealthCheck: " + getHealthCheck() + ","); if (getSourceSecurityGroup() != null) sb.append("SourceSecurityGroup: " + getSourceSecurityGroup() + ","); if (getSecurityGroups() != null) sb.append("SecurityGroups: " + getSecurityGroups() + ","); if (getCreatedTime() != null) sb.append("CreatedTime: " + getCreatedTime() + ","); if (getScheme() != null) sb.append("Scheme: " + getScheme() ); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getLoadBalancerName() == null) ? 0 : getLoadBalancerName().hashCode()); hashCode = prime * hashCode + ((getDNSName() == null) ? 0 : getDNSName().hashCode()); hashCode = prime * hashCode + ((getCanonicalHostedZoneName() == null) ? 0 : getCanonicalHostedZoneName().hashCode()); hashCode = prime * hashCode + ((getCanonicalHostedZoneNameID() == null) ? 0 : getCanonicalHostedZoneNameID().hashCode()); hashCode = prime * hashCode + ((getListenerDescriptions() == null) ? 0 : getListenerDescriptions().hashCode()); hashCode = prime * hashCode + ((getPolicies() == null) ? 0 : getPolicies().hashCode()); hashCode = prime * hashCode + ((getBackendServerDescriptions() == null) ? 0 : getBackendServerDescriptions().hashCode()); hashCode = prime * hashCode + ((getAvailabilityZones() == null) ? 0 : getAvailabilityZones().hashCode()); hashCode = prime * hashCode + ((getSubnets() == null) ? 0 : getSubnets().hashCode()); hashCode = prime * hashCode + ((getVPCId() == null) ? 0 : getVPCId().hashCode()); hashCode = prime * hashCode + ((getInstances() == null) ? 0 : getInstances().hashCode()); hashCode = prime * hashCode + ((getHealthCheck() == null) ? 0 : getHealthCheck().hashCode()); hashCode = prime * hashCode + ((getSourceSecurityGroup() == null) ? 0 : getSourceSecurityGroup().hashCode()); hashCode = prime * hashCode + ((getSecurityGroups() == null) ? 0 : getSecurityGroups().hashCode()); hashCode = prime * hashCode + ((getCreatedTime() == null) ? 0 : getCreatedTime().hashCode()); hashCode = prime * hashCode + ((getScheme() == null) ? 0 : getScheme().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof LoadBalancerDescription == false) return false; LoadBalancerDescription other = (LoadBalancerDescription)obj; if (other.getLoadBalancerName() == null ^ this.getLoadBalancerName() == null) return false; if (other.getLoadBalancerName() != null && other.getLoadBalancerName().equals(this.getLoadBalancerName()) == false) return false; if (other.getDNSName() == null ^ this.getDNSName() == null) return false; if (other.getDNSName() != null && other.getDNSName().equals(this.getDNSName()) == false) return false; if (other.getCanonicalHostedZoneName() == null ^ this.getCanonicalHostedZoneName() == null) return false; if (other.getCanonicalHostedZoneName() != null && other.getCanonicalHostedZoneName().equals(this.getCanonicalHostedZoneName()) == false) return false; if (other.getCanonicalHostedZoneNameID() == null ^ this.getCanonicalHostedZoneNameID() == null) return false; if (other.getCanonicalHostedZoneNameID() != null && other.getCanonicalHostedZoneNameID().equals(this.getCanonicalHostedZoneNameID()) == false) return false; if (other.getListenerDescriptions() == null ^ this.getListenerDescriptions() == null) return false; if (other.getListenerDescriptions() != null && other.getListenerDescriptions().equals(this.getListenerDescriptions()) == false) return false; if (other.getPolicies() == null ^ this.getPolicies() == null) return false; if (other.getPolicies() != null && other.getPolicies().equals(this.getPolicies()) == false) return false; if (other.getBackendServerDescriptions() == null ^ this.getBackendServerDescriptions() == null) return false; if (other.getBackendServerDescriptions() != null && other.getBackendServerDescriptions().equals(this.getBackendServerDescriptions()) == false) return false; if (other.getAvailabilityZones() == null ^ this.getAvailabilityZones() == null) return false; if (other.getAvailabilityZones() != null && other.getAvailabilityZones().equals(this.getAvailabilityZones()) == false) return false; if (other.getSubnets() == null ^ this.getSubnets() == null) return false; if (other.getSubnets() != null && other.getSubnets().equals(this.getSubnets()) == false) return false; if (other.getVPCId() == null ^ this.getVPCId() == null) return false; if (other.getVPCId() != null && other.getVPCId().equals(this.getVPCId()) == false) return false; if (other.getInstances() == null ^ this.getInstances() == null) return false; if (other.getInstances() != null && other.getInstances().equals(this.getInstances()) == false) return false; if (other.getHealthCheck() == null ^ this.getHealthCheck() == null) return false; if (other.getHealthCheck() != null && other.getHealthCheck().equals(this.getHealthCheck()) == false) return false; if (other.getSourceSecurityGroup() == null ^ this.getSourceSecurityGroup() == null) return false; if (other.getSourceSecurityGroup() != null && other.getSourceSecurityGroup().equals(this.getSourceSecurityGroup()) == false) return false; if (other.getSecurityGroups() == null ^ this.getSecurityGroups() == null) return false; if (other.getSecurityGroups() != null && other.getSecurityGroups().equals(this.getSecurityGroups()) == false) return false; if (other.getCreatedTime() == null ^ this.getCreatedTime() == null) return false; if (other.getCreatedTime() != null && other.getCreatedTime().equals(this.getCreatedTime()) == false) return false; if (other.getScheme() == null ^ this.getScheme() == null) return false; if (other.getScheme() != null && other.getScheme().equals(this.getScheme()) == false) return false; return true; } @Override public LoadBalancerDescription clone() { try { return (LoadBalancerDescription) 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