Class RunJobFlowResult
- java.lang.Object
-
- com.amazonaws.services.elasticmapreduce.model.RunJobFlowResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class RunJobFlowResult extends Object implements Serializable, Cloneable
The result of the RunJobFlow operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RunJobFlowResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RunJobFlowResult
clone()
boolean
equals(Object obj)
String
getJobFlowId()
An unique identifier for the job flow.int
hashCode()
void
setJobFlowId(String jobFlowId)
An unique identifier for the job flow.String
toString()
Returns a string representation of this object; useful for testing and debugging.RunJobFlowResult
withJobFlowId(String jobFlowId)
An unique identifier for the job flow.
-
-
-
Method Detail
-
setJobFlowId
public void setJobFlowId(String jobFlowId)
An unique identifier for the job flow.
- Parameters:
jobFlowId
- An unique identifier for the job flow.
-
getJobFlowId
public String getJobFlowId()
An unique identifier for the job flow.
- Returns:
- An unique identifier for the job flow.
-
withJobFlowId
public RunJobFlowResult withJobFlowId(String jobFlowId)
An unique identifier for the job flow.
- Parameters:
jobFlowId
- An unique identifier for the job flow.- 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()
-
clone
public RunJobFlowResult clone()
-
-