Class CreateDirectoryResult
- java.lang.Object
-
- com.amazonaws.services.directory.model.CreateDirectoryResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class CreateDirectoryResult extends Object implements Serializable, Cloneable
Contains the results of the CreateDirectory operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CreateDirectoryResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CreateDirectoryResult
clone()
boolean
equals(Object obj)
String
getDirectoryId()
The identifier of the directory that was created.int
hashCode()
void
setDirectoryId(String directoryId)
The identifier of the directory that was created.String
toString()
Returns a string representation of this object; useful for testing and debugging.CreateDirectoryResult
withDirectoryId(String directoryId)
The identifier of the directory that was created.
-
-
-
Method Detail
-
setDirectoryId
public void setDirectoryId(String directoryId)
The identifier of the directory that was created.
- Parameters:
directoryId
- The identifier of the directory that was created.
-
getDirectoryId
public String getDirectoryId()
The identifier of the directory that was created.
- Returns:
- The identifier of the directory that was created.
-
withDirectoryId
public CreateDirectoryResult withDirectoryId(String directoryId)
The identifier of the directory that was created.
- Parameters:
directoryId
- The identifier of the directory that was created.- 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 CreateDirectoryResult clone()
-
-