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 RunJobFlowResultclone()booleanequals(Object obj)StringgetJobFlowId()An unique identifier for the job flow.inthashCode()voidsetJobFlowId(String jobFlowId)An unique identifier for the job flow.StringtoString()Returns a string representation of this object; useful for testing and debugging.RunJobFlowResultwithJobFlowId(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public RunJobFlowResult clone()
-
-