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 DeregisterInstancesFromLoadBalancerResultclone()booleanequals(Object obj)List<Instance>getInstances()The remaining instances registered with the load balancer.inthashCode()voidsetInstances(Collection<Instance> instances)The remaining instances registered with the load balancer.StringtoString()Returns a string representation of this object; useful for testing and debugging.DeregisterInstancesFromLoadBalancerResultwithInstances(Instance... instances)The remaining instances registered with the load balancer.DeregisterInstancesFromLoadBalancerResultwithInstances(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DeregisterInstancesFromLoadBalancerResult clone()
-
-