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
runId
of 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 Run
clone()
boolean
equals(Object obj)
String
getRunId()
TherunId
of a workflow execution.int
hashCode()
void
setRunId(String runId)
TherunId
of a workflow execution.String
toString()
Returns a string representation of this object; useful for testing and debugging.Run
withRunId(String runId)
TherunId
of a workflow execution.
-
-
-
Method Detail
-
setRunId
public void setRunId(String runId)
The
runId
of 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
- TherunId
of 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
runId
of 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
runId
of 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
runId
of 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
- TherunId
of 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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
-