Class: Aws::DataPipeline::Types::ReportTaskProgressInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::ReportTaskProgressInput
- Defined in:
- gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb
Overview
Note:
When making an API call, you may pass ReportTaskProgressInput data as a hash:
{
task_id: "taskId", # required
fields: [
{
key: "fieldNameString", # required
string_value: "fieldStringValue",
ref_value: "fieldNameString",
},
],
}
Contains the parameters for ReportTaskProgress.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fields ⇒ Array<Types::Field>
Key-value pairs that define the properties of the ReportTaskProgressInput object.
-
#task_id ⇒ String
The ID of the task assigned to the task runner.
Instance Attribute Details
#fields ⇒ Array<Types::Field>
Key-value pairs that define the properties of the ReportTaskProgressInput object.
1226 1227 1228 1229 1230 1231 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 1226 class ReportTaskProgressInput < Struct.new( :task_id, :fields) SENSITIVE = [] include Aws::Structure end |
#task_id ⇒ String
The ID of the task assigned to the task runner. This value is provided in the response for PollForTask.
1226 1227 1228 1229 1230 1231 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 1226 class ReportTaskProgressInput < Struct.new( :task_id, :fields) SENSITIVE = [] include Aws::Structure end |