public class TaskObject
extends java.lang.Object
implements java.io.Serializable
Contains information about a pipeline task that is assigned to a task runner.
| コンストラクタと説明 |
|---|
TaskObject() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
TaskObject |
addObjectsEntry(java.lang.String key,
PipelineObject value)
Connection information for the location where the task runner will
publish the output of the task.
|
TaskObject |
clearObjectsEntries()
Removes all the entries added into Objects.
|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getAttemptId()
Identifier of the pipeline task attempt object.
|
java.util.Map<java.lang.String,PipelineObject> |
getObjects()
Connection information for the location where the task runner will
publish the output of the task.
|
java.lang.String |
getPipelineId()
Identifier of the pipeline that provided the task.
|
java.lang.String |
getTaskId()
An internal identifier for the task.
|
int |
hashCode() |
void |
setAttemptId(java.lang.String attemptId)
Identifier of the pipeline task attempt object.
|
void |
setObjects(java.util.Map<java.lang.String,PipelineObject> objects)
Connection information for the location where the task runner will
publish the output of the task.
|
void |
setPipelineId(java.lang.String pipelineId)
Identifier of the pipeline that provided the task.
|
void |
setTaskId(java.lang.String taskId)
An internal identifier for the task.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
TaskObject |
withAttemptId(java.lang.String attemptId)
Identifier of the pipeline task attempt object.
|
TaskObject |
withObjects(java.util.Map<java.lang.String,PipelineObject> objects)
Connection information for the location where the task runner will
publish the output of the task.
|
TaskObject |
withPipelineId(java.lang.String pipelineId)
Identifier of the pipeline that provided the task.
|
TaskObject |
withTaskId(java.lang.String taskId)
An internal identifier for the task.
|
public java.lang.String getTaskId()
Constraints:
Length: 1 - 2048
Pattern: [ --�𐀀-\r\n\t]*
public void setTaskId(java.lang.String taskId)
Constraints:
Length: 1 - 2048
Pattern: [ --�𐀀-\r\n\t]*
taskId - An internal identifier for the task. This ID is passed to the
SetTaskStatus and ReportTaskProgress actions.public TaskObject withTaskId(java.lang.String taskId)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 2048
Pattern: [ --�𐀀-\r\n\t]*
taskId - An internal identifier for the task. This ID is passed to the
SetTaskStatus and ReportTaskProgress actions.public java.lang.String getPipelineId()
Constraints:
Length: 1 - 1024
Pattern: [ --�𐀀-\r\n\t]*
public void setPipelineId(java.lang.String pipelineId)
Constraints:
Length: 1 - 1024
Pattern: [ --�𐀀-\r\n\t]*
pipelineId - Identifier of the pipeline that provided the task.public TaskObject withPipelineId(java.lang.String pipelineId)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 1024
Pattern: [ --�𐀀-\r\n\t]*
pipelineId - Identifier of the pipeline that provided the task.public java.lang.String getAttemptId()
Constraints:
Length: 1 - 1024
Pattern: [ --�𐀀-\r\n\t]*
public void setAttemptId(java.lang.String attemptId)
Constraints:
Length: 1 - 1024
Pattern: [ --�𐀀-\r\n\t]*
attemptId - Identifier of the pipeline task attempt object. AWS Data Pipeline uses
this value to track how many times a task is attempted.public TaskObject withAttemptId(java.lang.String attemptId)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 1024
Pattern: [ --�𐀀-\r\n\t]*
attemptId - Identifier of the pipeline task attempt object. AWS Data Pipeline uses
this value to track how many times a task is attempted.public java.util.Map<java.lang.String,PipelineObject> getObjects()
public void setObjects(java.util.Map<java.lang.String,PipelineObject> objects)
objects - Connection information for the location where the task runner will
publish the output of the task.public TaskObject withObjects(java.util.Map<java.lang.String,PipelineObject> objects)
Returns a reference to this object so that method calls can be chained together.
objects - Connection information for the location where the task runner will
publish the output of the task.public TaskObject addObjectsEntry(java.lang.String key, PipelineObject value)
The method adds a new key-value pair into Objects parameter, and returns a reference to this object so that method calls can be chained together.
key - The key of the entry to be added into Objects.value - The corresponding value of the entry to be added into Objects.public TaskObject clearObjectsEntries()
Returns a reference to this object so that method calls can be chained together.
public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object