Class ReportTaskRunnerHeartbeatResult
- java.lang.Object
-
- com.amazonaws.services.datapipeline.model.ReportTaskRunnerHeartbeatResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ReportTaskRunnerHeartbeatResult extends Object implements Serializable, Cloneable
Contains the output of ReportTaskRunnerHeartbeat.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ReportTaskRunnerHeartbeatResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ReportTaskRunnerHeartbeatResult
clone()
boolean
equals(Object obj)
Boolean
getTerminate()
Indicates whether the calling task runner should terminate.int
hashCode()
Boolean
isTerminate()
Indicates whether the calling task runner should terminate.void
setTerminate(Boolean terminate)
Indicates whether the calling task runner should terminate.String
toString()
Returns a string representation of this object; useful for testing and debugging.ReportTaskRunnerHeartbeatResult
withTerminate(Boolean terminate)
Indicates whether the calling task runner should terminate.
-
-
-
Method Detail
-
setTerminate
public void setTerminate(Boolean terminate)
Indicates whether the calling task runner should terminate.
- Parameters:
terminate
- Indicates whether the calling task runner should terminate.
-
getTerminate
public Boolean getTerminate()
Indicates whether the calling task runner should terminate.
- Returns:
- Indicates whether the calling task runner should terminate.
-
withTerminate
public ReportTaskRunnerHeartbeatResult withTerminate(Boolean terminate)
Indicates whether the calling task runner should terminate.
- Parameters:
terminate
- Indicates whether the calling task runner should terminate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isTerminate
public Boolean isTerminate()
Indicates whether the calling task runner should terminate.
- Returns:
- Indicates whether the calling task runner should terminate.
-
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 ReportTaskRunnerHeartbeatResult clone()
-
-