public class WorkflowExecution extends Object implements Serializable, Cloneable
Represents a workflow execution.
| Constructor and Description | 
|---|
| WorkflowExecution() | 
| Modifier and Type | Method and Description | 
|---|---|
| WorkflowExecution | clone() | 
| boolean | equals(Object obj) | 
| String | getRunId()A system-generated unique identifier for the workflow execution. | 
| String | getWorkflowId()The user defined identifier associated with the workflow execution. | 
| int | hashCode() | 
| void | setRunId(String runId)A system-generated unique identifier for the workflow execution. | 
| void | setWorkflowId(String workflowId)The user defined identifier associated with the workflow execution. | 
| String | toString()Returns a string representation of this object; useful for testing and
 debugging. | 
| WorkflowExecution | withRunId(String runId)A system-generated unique identifier for the workflow execution. | 
| WorkflowExecution | withWorkflowId(String workflowId)The user defined identifier associated with the workflow execution. | 
public String getWorkflowId()
 Constraints:
 Length: 1 - 256
public void setWorkflowId(String workflowId)
 Constraints:
 Length: 1 - 256
workflowId - The user defined identifier associated with the workflow execution.public WorkflowExecution withWorkflowId(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 String getRunId()
 Constraints:
 Length: 1 - 64
public void setRunId(String runId)
 Constraints:
 Length: 1 - 64
runId - A system-generated unique identifier for the workflow execution.public WorkflowExecution withRunId(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 String toString()
toString in class ObjectObject.toString()public WorkflowExecution clone()
Copyright © 2015. All rights reserved.