public class GetConsoleOutputResult
extends java.lang.Object
implements java.io.Serializable
The result of the GetConsoleOutput operation.
| コンストラクタと説明 |
|---|
GetConsoleOutputResult() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getInstanceId()
The ID of the instance whose console output was requested.
|
java.lang.String |
getOutput()
The console output, Base64 encoded.
|
java.util.Date |
getTimestamp()
The time the output was last updated.
|
int |
hashCode() |
void |
setInstanceId(java.lang.String instanceId)
The ID of the instance whose console output was requested.
|
void |
setOutput(java.lang.String output)
The console output, Base64 encoded.
|
void |
setTimestamp(java.util.Date timestamp)
The time the output was last updated.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
GetConsoleOutputResult |
withInstanceId(java.lang.String instanceId)
The ID of the instance whose console output was requested.
|
GetConsoleOutputResult |
withOutput(java.lang.String output)
The console output, Base64 encoded.
|
GetConsoleOutputResult |
withTimestamp(java.util.Date timestamp)
The time the output was last updated.
|
public java.lang.String getInstanceId()
public void setInstanceId(java.lang.String instanceId)
instanceId - The ID of the instance whose console output was requested.public GetConsoleOutputResult withInstanceId(java.lang.String instanceId)
Returns a reference to this object so that method calls can be chained together.
instanceId - The ID of the instance whose console output was requested.public java.util.Date getTimestamp()
public void setTimestamp(java.util.Date timestamp)
timestamp - The time the output was last updated.public GetConsoleOutputResult withTimestamp(java.util.Date timestamp)
Returns a reference to this object so that method calls can be chained together.
timestamp - The time the output was last updated.public java.lang.String getOutput()
public void setOutput(java.lang.String output)
output - The console output, Base64 encoded.public GetConsoleOutputResult withOutput(java.lang.String output)
Returns a reference to this object so that method calls can be chained together.
output - The console output, Base64 encoded.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object