Class DeregisterInstancesFromLoadBalancerResult
- java.lang.Object
-
- com.amazonaws.services.elasticloadbalancing.model.DeregisterInstancesFromLoadBalancerResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DeregisterInstancesFromLoadBalancerResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeregisterInstancesFromLoadBalancerResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeregisterInstancesFromLoadBalancerResult
clone()
boolean
equals(Object obj)
List<Instance>
getInstances()
The remaining instances registered with the load balancer.int
hashCode()
void
setInstances(Collection<Instance> instances)
The remaining instances registered with the load balancer.String
toString()
Returns a string representation of this object; useful for testing and debugging.DeregisterInstancesFromLoadBalancerResult
withInstances(Instance... instances)
The remaining instances registered with the load balancer.DeregisterInstancesFromLoadBalancerResult
withInstances(Collection<Instance> instances)
The remaining instances registered with the load balancer.
-
-
-
Method Detail
-
getInstances
public List<Instance> getInstances()
The remaining instances registered with the load balancer.
- Returns:
- The remaining instances registered with the load balancer.
-
setInstances
public void setInstances(Collection<Instance> instances)
The remaining instances registered with the load balancer.
- Parameters:
instances
- The remaining instances registered with the load balancer.
-
withInstances
public DeregisterInstancesFromLoadBalancerResult withInstances(Instance... instances)
The remaining instances registered with the load balancer.
NOTE: This method appends the values to the existing list (if any). Use
setInstances(java.util.Collection)
orwithInstances(java.util.Collection)
if you want to override the existing values.- Parameters:
instances
- The remaining instances registered with the load balancer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withInstances
public DeregisterInstancesFromLoadBalancerResult withInstances(Collection<Instance> instances)
The remaining instances registered with the load balancer.
- Parameters:
instances
- The remaining instances registered with the load balancer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DeregisterInstancesFromLoadBalancerResult clone()
-
-