Class: Aws::DataPipeline::Types::PollForTaskOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::PollForTaskOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-datapipeline/types.rb
Overview
Contains the output of PollForTask.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#task_object ⇒ Types::TaskObject
The information needed to complete the task that is being assigned to the task runner.
Instance Attribute Details
#task_object ⇒ Types::TaskObject
The information needed to complete the task that is being assigned to the task runner. One of the fields returned in this object is ‘taskId`, which contains an identifier for the task being assigned. The calling task runner uses `taskId` in subsequent calls to ReportTaskProgress and SetTaskStatus.
764 765 766 767 768 |
# File 'lib/aws-sdk-datapipeline/types.rb', line 764 class PollForTaskOutput < Struct.new( :task_object) SENSITIVE = [] include Aws::Structure end |