Class: Aws::DataPipeline::Types::TaskObject
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::TaskObject
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-datapipeline/types.rb
Overview
Contains information about a pipeline task that is assigned to a task runner.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attempt_id ⇒ String
The ID of the pipeline task attempt object.
-
#objects ⇒ Hash<String,Types::PipelineObject>
Connection information for the location where the task runner will publish the output of the task.
-
#pipeline_id ⇒ String
The ID of the pipeline that provided the task.
-
#task_id ⇒ String
An internal identifier for the task.
Instance Attribute Details
#attempt_id ⇒ String
The ID of the pipeline task attempt object. AWS Data Pipeline uses this value to track how many times a task is attempted.
1200 1201 1202 1203 1204 1205 1206 1207 |
# File 'lib/aws-sdk-datapipeline/types.rb', line 1200 class TaskObject < Struct.new( :task_id, :pipeline_id, :attempt_id, :objects) SENSITIVE = [] include Aws::Structure end |
#objects ⇒ Hash<String,Types::PipelineObject>
Connection information for the location where the task runner will publish the output of the task.
1200 1201 1202 1203 1204 1205 1206 1207 |
# File 'lib/aws-sdk-datapipeline/types.rb', line 1200 class TaskObject < Struct.new( :task_id, :pipeline_id, :attempt_id, :objects) SENSITIVE = [] include Aws::Structure end |
#pipeline_id ⇒ String
The ID of the pipeline that provided the task.
1200 1201 1202 1203 1204 1205 1206 1207 |
# File 'lib/aws-sdk-datapipeline/types.rb', line 1200 class TaskObject < Struct.new( :task_id, :pipeline_id, :attempt_id, :objects) SENSITIVE = [] include Aws::Structure end |
#task_id ⇒ String
An internal identifier for the task. This ID is passed to the SetTaskStatus and ReportTaskProgress actions.
1200 1201 1202 1203 1204 1205 1206 1207 |
# File 'lib/aws-sdk-datapipeline/types.rb', line 1200 class TaskObject < Struct.new( :task_id, :pipeline_id, :attempt_id, :objects) SENSITIVE = [] include Aws::Structure end |