public class CreateAliasResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Contains the results of the CreateAlias operation.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
alias
The alias for the directory.
|
private java.lang.String |
directoryId
The identifier of the directory.
|
Constructor and Description |
---|
CreateAliasResult() |
Modifier and Type | Method and Description |
---|---|
CreateAliasResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getAlias()
The alias for the directory.
|
java.lang.String |
getDirectoryId()
The identifier of the directory.
|
int |
hashCode() |
void |
setAlias(java.lang.String alias)
The alias for the directory.
|
void |
setDirectoryId(java.lang.String directoryId)
The identifier of the directory.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
CreateAliasResult |
withAlias(java.lang.String alias)
The alias for the directory.
|
CreateAliasResult |
withDirectoryId(java.lang.String directoryId)
The identifier of the directory.
|
private java.lang.String directoryId
The identifier of the directory.
private java.lang.String alias
The alias for the directory.
public void setDirectoryId(java.lang.String directoryId)
The identifier of the directory.
directoryId
- The identifier of the directory.public java.lang.String getDirectoryId()
The identifier of the directory.
public CreateAliasResult withDirectoryId(java.lang.String directoryId)
The identifier of the directory.
directoryId
- The identifier of the directory.public void setAlias(java.lang.String alias)
The alias for the directory.
alias
- The alias for the directory.public java.lang.String getAlias()
The alias for the directory.
public CreateAliasResult withAlias(java.lang.String alias)
The alias for the directory.
alias
- The alias for the directory.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public CreateAliasResult clone()
clone
in class java.lang.Object