Class SendCommandResult
- java.lang.Object
-
- com.amazonaws.services.simplesystemsmanagement.model.SendCommandResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class SendCommandResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SendCommandResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SendCommandResult
clone()
boolean
equals(Object obj)
Command
getCommand()
The request as it was received by SSM.int
hashCode()
void
setCommand(Command command)
The request as it was received by SSM.String
toString()
Returns a string representation of this object; useful for testing and debugging.SendCommandResult
withCommand(Command command)
The request as it was received by SSM.
-
-
-
Method Detail
-
setCommand
public void setCommand(Command command)
The request as it was received by SSM. Also provides the command ID which can be used future references to this request.
- Parameters:
command
- The request as it was received by SSM. Also provides the command ID which can be used future references to this request.
-
getCommand
public Command getCommand()
The request as it was received by SSM. Also provides the command ID which can be used future references to this request.
- Returns:
- The request as it was received by SSM. Also provides the command ID which can be used future references to this request.
-
withCommand
public SendCommandResult withCommand(Command command)
The request as it was received by SSM. Also provides the command ID which can be used future references to this request.
- Parameters:
command
- The request as it was received by SSM. Also provides the command ID which can be used future references to this request.- 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 SendCommandResult clone()
-
-