Class ElasticIpStatus
- java.lang.Object
-
- com.amazonaws.services.redshift.model.ElasticIpStatus
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ElasticIpStatus extends Object implements Serializable, Cloneable
Describes the status of the elastic IP (EIP) address.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ElasticIpStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ElasticIpStatus
clone()
boolean
equals(Object obj)
String
getElasticIp()
The elastic IP (EIP) address for the cluster.String
getStatus()
The status of the elastic IP (EIP) address.int
hashCode()
void
setElasticIp(String elasticIp)
The elastic IP (EIP) address for the cluster.void
setStatus(String status)
The status of the elastic IP (EIP) address.String
toString()
Returns a string representation of this object; useful for testing and debugging.ElasticIpStatus
withElasticIp(String elasticIp)
The elastic IP (EIP) address for the cluster.ElasticIpStatus
withStatus(String status)
The status of the elastic IP (EIP) address.
-
-
-
Method Detail
-
setElasticIp
public void setElasticIp(String elasticIp)
The elastic IP (EIP) address for the cluster.
- Parameters:
elasticIp
- The elastic IP (EIP) address for the cluster.
-
getElasticIp
public String getElasticIp()
The elastic IP (EIP) address for the cluster.
- Returns:
- The elastic IP (EIP) address for the cluster.
-
withElasticIp
public ElasticIpStatus withElasticIp(String elasticIp)
The elastic IP (EIP) address for the cluster.
- Parameters:
elasticIp
- The elastic IP (EIP) address for the cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setStatus
public void setStatus(String status)
The status of the elastic IP (EIP) address.
- Parameters:
status
- The status of the elastic IP (EIP) address.
-
getStatus
public String getStatus()
The status of the elastic IP (EIP) address.
- Returns:
- The status of the elastic IP (EIP) address.
-
withStatus
public ElasticIpStatus withStatus(String status)
The status of the elastic IP (EIP) address.
- Parameters:
status
- The status of the elastic IP (EIP) 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 ElasticIpStatus clone()
-
-