Class RegisterElasticIpResult
- java.lang.Object
-
- com.amazonaws.services.opsworks.model.RegisterElasticIpResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class RegisterElasticIpResult extends Object implements Serializable, Cloneable
Contains the response to a
RegisterElasticIp
request.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RegisterElasticIpResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RegisterElasticIpResult
clone()
boolean
equals(Object obj)
String
getElasticIp()
The Elastic IP address.int
hashCode()
void
setElasticIp(String elasticIp)
The Elastic IP address.String
toString()
Returns a string representation of this object; useful for testing and debugging.RegisterElasticIpResult
withElasticIp(String elasticIp)
The Elastic IP address.
-
-
-
Method Detail
-
setElasticIp
public void setElasticIp(String elasticIp)
The Elastic IP address.
- Parameters:
elasticIp
- The Elastic IP address.
-
getElasticIp
public String getElasticIp()
The Elastic IP address.
- Returns:
- The Elastic IP address.
-
withElasticIp
public RegisterElasticIpResult withElasticIp(String elasticIp)
The Elastic IP address.
- Parameters:
elasticIp
- The Elastic IP address.- 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 RegisterElasticIpResult clone()
-
-