Class Run
- java.lang.Object
-
- com.amazonaws.services.simpleworkflow.model.Run
-
- All Implemented Interfaces:
Serializable,Cloneable
public class Run extends Object implements Serializable, Cloneable
Specifies the
runIdof a workflow execution.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Run()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Runclone()booleanequals(Object obj)StringgetRunId()TherunIdof a workflow execution.inthashCode()voidsetRunId(String runId)TherunIdof a workflow execution.StringtoString()Returns a string representation of this object; useful for testing and debugging.RunwithRunId(String runId)TherunIdof a workflow execution.
-
-
-
Method Detail
-
setRunId
public void setRunId(String runId)
The
runIdof a workflow execution. This ID is generated by the service and can be used to uniquely identify the workflow execution within a domain.- Parameters:
runId- TherunIdof a workflow execution. This ID is generated by the service and can be used to uniquely identify the workflow execution within a domain.
-
getRunId
public String getRunId()
The
runIdof a workflow execution. This ID is generated by the service and can be used to uniquely identify the workflow execution within a domain.- Returns:
- The
runIdof a workflow execution. This ID is generated by the service and can be used to uniquely identify the workflow execution within a domain.
-
withRunId
public Run withRunId(String runId)
The
runIdof a workflow execution. This ID is generated by the service and can be used to uniquely identify the workflow execution within a domain.- Parameters:
runId- TherunIdof a workflow execution. This ID is generated by the service and can be used to uniquely identify the workflow execution within a domain.- 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
-