Class CheckDNSAvailabilityResult
- java.lang.Object
-
- com.amazonaws.services.elasticbeanstalk.model.CheckDNSAvailabilityResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class CheckDNSAvailabilityResult extends Object implements Serializable, Cloneable
Indicates if the specified CNAME is available.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CheckDNSAvailabilityResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CheckDNSAvailabilityResult
clone()
boolean
equals(Object obj)
Boolean
getAvailable()
Indicates if the specified CNAME is available:String
getFullyQualifiedCNAME()
The fully qualified CNAME to reserve when CreateEnvironment is called with the provided prefix.int
hashCode()
Boolean
isAvailable()
Indicates if the specified CNAME is available:void
setAvailable(Boolean available)
Indicates if the specified CNAME is available:void
setFullyQualifiedCNAME(String fullyQualifiedCNAME)
The fully qualified CNAME to reserve when CreateEnvironment is called with the provided prefix.String
toString()
Returns a string representation of this object; useful for testing and debugging.CheckDNSAvailabilityResult
withAvailable(Boolean available)
Indicates if the specified CNAME is available:CheckDNSAvailabilityResult
withFullyQualifiedCNAME(String fullyQualifiedCNAME)
The fully qualified CNAME to reserve when CreateEnvironment is called with the provided prefix.
-
-
-
Method Detail
-
setAvailable
public void setAvailable(Boolean available)
Indicates if the specified CNAME is available:
-
true
: The CNAME is available. -
false
: The CNAME is not available.
- Parameters:
available
- Indicates if the specified CNAME is available:-
true
: The CNAME is available. -
false
: The CNAME is not available.
-
-
-
getAvailable
public Boolean getAvailable()
Indicates if the specified CNAME is available:
-
true
: The CNAME is available. -
false
: The CNAME is not available.
- Returns:
- Indicates if the specified CNAME is available:
-
true
: The CNAME is available. -
false
: The CNAME is not available.
-
-
-
withAvailable
public CheckDNSAvailabilityResult withAvailable(Boolean available)
Indicates if the specified CNAME is available:
-
true
: The CNAME is available. -
false
: The CNAME is not available.
- Parameters:
available
- Indicates if the specified CNAME is available:-
true
: The CNAME is available. -
false
: The CNAME is not available.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
isAvailable
public Boolean isAvailable()
Indicates if the specified CNAME is available:
-
true
: The CNAME is available. -
false
: The CNAME is not available.
- Returns:
- Indicates if the specified CNAME is available:
-
true
: The CNAME is available. -
false
: The CNAME is not available.
-
-
-
setFullyQualifiedCNAME
public void setFullyQualifiedCNAME(String fullyQualifiedCNAME)
The fully qualified CNAME to reserve when CreateEnvironment is called with the provided prefix.
- Parameters:
fullyQualifiedCNAME
- The fully qualified CNAME to reserve when CreateEnvironment is called with the provided prefix.
-
getFullyQualifiedCNAME
public String getFullyQualifiedCNAME()
The fully qualified CNAME to reserve when CreateEnvironment is called with the provided prefix.
- Returns:
- The fully qualified CNAME to reserve when CreateEnvironment is called with the provided prefix.
-
withFullyQualifiedCNAME
public CheckDNSAvailabilityResult withFullyQualifiedCNAME(String fullyQualifiedCNAME)
The fully qualified CNAME to reserve when CreateEnvironment is called with the provided prefix.
- Parameters:
fullyQualifiedCNAME
- The fully qualified CNAME to reserve when CreateEnvironment is called with the provided prefix.- 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 CheckDNSAvailabilityResult clone()
-
-