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 ElasticIpStatusclone()booleanequals(Object obj)StringgetElasticIp()The elastic IP (EIP) address for the cluster.StringgetStatus()The status of the elastic IP (EIP) address.inthashCode()voidsetElasticIp(String elasticIp)The elastic IP (EIP) address for the cluster.voidsetStatus(String status)The status of the elastic IP (EIP) address.StringtoString()Returns a string representation of this object; useful for testing and debugging.ElasticIpStatuswithElasticIp(String elasticIp)The elastic IP (EIP) address for the cluster.ElasticIpStatuswithStatus(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ElasticIpStatus clone()
-
-