Class LoadBalancer
- java.lang.Object
-
- com.amazonaws.services.elasticbeanstalk.model.LoadBalancer
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class LoadBalancer extends Object implements Serializable, Cloneable
Describes a LoadBalancer.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LoadBalancer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LoadBalancer
clone()
boolean
equals(Object obj)
String
getName()
The name of the LoadBalancer.int
hashCode()
void
setName(String name)
The name of the LoadBalancer.String
toString()
Returns a string representation of this object; useful for testing and debugging.LoadBalancer
withName(String name)
The name of the LoadBalancer.
-
-
-
Method Detail
-
setName
public void setName(String name)
The name of the LoadBalancer.
- Parameters:
name
- The name of the LoadBalancer.
-
getName
public String getName()
The name of the LoadBalancer.
- Returns:
- The name of the LoadBalancer.
-
withName
public LoadBalancer withName(String name)
The name of the LoadBalancer.
- Parameters:
name
- The name of the LoadBalancer.- 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 LoadBalancer clone()
-
-