/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the parameters for ReportTaskProgress.See Also:
AWS
* API Reference
The ID of the task assigned to the task runner. This value is provided in the * response for PollForTask.
*/ inline const Aws::String& GetTaskId() const{ return m_taskId; } /** *The ID of the task assigned to the task runner. This value is provided in the * response for PollForTask.
*/ inline bool TaskIdHasBeenSet() const { return m_taskIdHasBeenSet; } /** *The ID of the task assigned to the task runner. This value is provided in the * response for PollForTask.
*/ inline void SetTaskId(const Aws::String& value) { m_taskIdHasBeenSet = true; m_taskId = value; } /** *The ID of the task assigned to the task runner. This value is provided in the * response for PollForTask.
*/ inline void SetTaskId(Aws::String&& value) { m_taskIdHasBeenSet = true; m_taskId = std::move(value); } /** *The ID of the task assigned to the task runner. This value is provided in the * response for PollForTask.
*/ inline void SetTaskId(const char* value) { m_taskIdHasBeenSet = true; m_taskId.assign(value); } /** *The ID of the task assigned to the task runner. This value is provided in the * response for PollForTask.
*/ inline ReportTaskProgressRequest& WithTaskId(const Aws::String& value) { SetTaskId(value); return *this;} /** *The ID of the task assigned to the task runner. This value is provided in the * response for PollForTask.
*/ inline ReportTaskProgressRequest& WithTaskId(Aws::String&& value) { SetTaskId(std::move(value)); return *this;} /** *The ID of the task assigned to the task runner. This value is provided in the * response for PollForTask.
*/ inline ReportTaskProgressRequest& WithTaskId(const char* value) { SetTaskId(value); return *this;} /** *Key-value pairs that define the properties of the ReportTaskProgressInput * object.
*/ inline const Aws::VectorKey-value pairs that define the properties of the ReportTaskProgressInput * object.
*/ inline bool FieldsHasBeenSet() const { return m_fieldsHasBeenSet; } /** *Key-value pairs that define the properties of the ReportTaskProgressInput * object.
*/ inline void SetFields(const Aws::VectorKey-value pairs that define the properties of the ReportTaskProgressInput * object.
*/ inline void SetFields(Aws::VectorKey-value pairs that define the properties of the ReportTaskProgressInput * object.
*/ inline ReportTaskProgressRequest& WithFields(const Aws::VectorKey-value pairs that define the properties of the ReportTaskProgressInput * object.
*/ inline ReportTaskProgressRequest& WithFields(Aws::VectorKey-value pairs that define the properties of the ReportTaskProgressInput * object.
*/ inline ReportTaskProgressRequest& AddFields(const Field& value) { m_fieldsHasBeenSet = true; m_fields.push_back(value); return *this; } /** *Key-value pairs that define the properties of the ReportTaskProgressInput * object.
*/ inline ReportTaskProgressRequest& AddFields(Field&& value) { m_fieldsHasBeenSet = true; m_fields.push_back(std::move(value)); return *this; } private: Aws::String m_taskId; bool m_taskIdHasBeenSet = false; Aws::Vector