public class RunTaskResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Modifier and Type | Field and Description |
---|---|
private SdkInternalList<Failure> |
failures
Any failures associated with the call.
|
private SdkInternalList<Task> |
tasks
A full description of the tasks that were run.
|
Constructor and Description |
---|
RunTaskResult() |
Modifier and Type | Method and Description |
---|---|
RunTaskResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.util.List<Failure> |
getFailures()
Any failures associated with the call.
|
java.util.List<Task> |
getTasks()
A full description of the tasks that were run.
|
int |
hashCode() |
void |
setFailures(java.util.Collection<Failure> failures)
Any failures associated with the call.
|
void |
setTasks(java.util.Collection<Task> tasks)
A full description of the tasks that were run.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
RunTaskResult |
withFailures(java.util.Collection<Failure> failures)
Any failures associated with the call.
|
RunTaskResult |
withFailures(Failure... failures)
Any failures associated with the call.
|
RunTaskResult |
withTasks(java.util.Collection<Task> tasks)
A full description of the tasks that were run.
|
RunTaskResult |
withTasks(Task... tasks)
A full description of the tasks that were run.
|
private SdkInternalList<Task> tasks
A full description of the tasks that were run. Each task that was successfully placed on your cluster are described here.
private SdkInternalList<Failure> failures
Any failures associated with the call.
public java.util.List<Task> getTasks()
A full description of the tasks that were run. Each task that was successfully placed on your cluster are described here.
public void setTasks(java.util.Collection<Task> tasks)
A full description of the tasks that were run. Each task that was successfully placed on your cluster are described here.
tasks
- A full description of the tasks that were run. Each task that was
successfully placed on your cluster are described here.public RunTaskResult withTasks(Task... tasks)
A full description of the tasks that were run. Each task that was successfully placed on your cluster are described here.
NOTE: This method appends the values to the existing list (if
any). Use setTasks(java.util.Collection)
or
withTasks(java.util.Collection)
if you want to override the
existing values.
tasks
- A full description of the tasks that were run. Each task that was
successfully placed on your cluster are described here.public RunTaskResult withTasks(java.util.Collection<Task> tasks)
A full description of the tasks that were run. Each task that was successfully placed on your cluster are described here.
tasks
- A full description of the tasks that were run. Each task that was
successfully placed on your cluster are described here.public java.util.List<Failure> getFailures()
Any failures associated with the call.
public void setFailures(java.util.Collection<Failure> failures)
Any failures associated with the call.
failures
- Any failures associated with the call.public RunTaskResult withFailures(Failure... failures)
Any failures associated with the call.
NOTE: This method appends the values to the existing list (if
any). Use setFailures(java.util.Collection)
or
withFailures(java.util.Collection)
if you want to override the
existing values.
failures
- Any failures associated with the call.public RunTaskResult withFailures(java.util.Collection<Failure> failures)
Any failures associated with the call.
failures
- Any failures associated with the call.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public RunTaskResult clone()
clone
in class java.lang.Object