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 CheckDNSAvailabilityResultclone()booleanequals(Object obj)BooleangetAvailable()Indicates if the specified CNAME is available:StringgetFullyQualifiedCNAME()The fully qualified CNAME to reserve when CreateEnvironment is called with the provided prefix.inthashCode()BooleanisAvailable()Indicates if the specified CNAME is available:voidsetAvailable(Boolean available)Indicates if the specified CNAME is available:voidsetFullyQualifiedCNAME(String fullyQualifiedCNAME)The fully qualified CNAME to reserve when CreateEnvironment is called with the provided prefix.StringtoString()Returns a string representation of this object; useful for testing and debugging.CheckDNSAvailabilityResultwithAvailable(Boolean available)Indicates if the specified CNAME is available:CheckDNSAvailabilityResultwithFullyQualifiedCNAME(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public CheckDNSAvailabilityResult clone()
-
-