public class WorkflowExecution
extends java.lang.Object
implements java.io.Serializable
Represents a workflow execution.
| コンストラクタと説明 |
|---|
WorkflowExecution() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getRunId()
A system generated unique identifier for the workflow execution.
|
java.lang.String |
getWorkflowId()
The user defined identifier associated with the workflow execution.
|
int |
hashCode() |
void |
setRunId(java.lang.String runId)
A system generated unique identifier for the workflow execution.
|
void |
setWorkflowId(java.lang.String workflowId)
The user defined identifier associated with the workflow execution.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
WorkflowExecution |
withRunId(java.lang.String runId)
A system generated unique identifier for the workflow execution.
|
WorkflowExecution |
withWorkflowId(java.lang.String workflowId)
The user defined identifier associated with the workflow execution.
|
public java.lang.String getWorkflowId()
Constraints:
Length: 1 - 256
public void setWorkflowId(java.lang.String workflowId)
Constraints:
Length: 1 - 256
workflowId - The user defined identifier associated with the workflow execution.public WorkflowExecution withWorkflowId(java.lang.String workflowId)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 256
workflowId - The user defined identifier associated with the workflow execution.public java.lang.String getRunId()
Constraints:
Length: 1 - 64
public void setRunId(java.lang.String runId)
Constraints:
Length: 1 - 64
runId - A system generated unique identifier for the workflow execution.public WorkflowExecution withRunId(java.lang.String runId)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 64
runId - A system generated unique identifier for the workflow execution.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