/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace DataPipeline { namespace Model { /** *

Contains the parameters for ReportTaskRunnerHeartbeat.

See * Also:

AWS * API Reference

*/ class ReportTaskRunnerHeartbeatRequest : public DataPipelineRequest { public: AWS_DATAPIPELINE_API ReportTaskRunnerHeartbeatRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "ReportTaskRunnerHeartbeat"; } AWS_DATAPIPELINE_API Aws::String SerializePayload() const override; AWS_DATAPIPELINE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The ID of the task runner. This value should be unique across your AWS * account. In the case of AWS Data Pipeline Task Runner launched on a resource * managed by AWS Data Pipeline, the web service provides a unique identifier when * it launches the application. If you have written a custom task runner, you * should assign a unique identifier for the task runner.

*/ inline const Aws::String& GetTaskrunnerId() const{ return m_taskrunnerId; } /** *

The ID of the task runner. This value should be unique across your AWS * account. In the case of AWS Data Pipeline Task Runner launched on a resource * managed by AWS Data Pipeline, the web service provides a unique identifier when * it launches the application. If you have written a custom task runner, you * should assign a unique identifier for the task runner.

*/ inline bool TaskrunnerIdHasBeenSet() const { return m_taskrunnerIdHasBeenSet; } /** *

The ID of the task runner. This value should be unique across your AWS * account. In the case of AWS Data Pipeline Task Runner launched on a resource * managed by AWS Data Pipeline, the web service provides a unique identifier when * it launches the application. If you have written a custom task runner, you * should assign a unique identifier for the task runner.

*/ inline void SetTaskrunnerId(const Aws::String& value) { m_taskrunnerIdHasBeenSet = true; m_taskrunnerId = value; } /** *

The ID of the task runner. This value should be unique across your AWS * account. In the case of AWS Data Pipeline Task Runner launched on a resource * managed by AWS Data Pipeline, the web service provides a unique identifier when * it launches the application. If you have written a custom task runner, you * should assign a unique identifier for the task runner.

*/ inline void SetTaskrunnerId(Aws::String&& value) { m_taskrunnerIdHasBeenSet = true; m_taskrunnerId = std::move(value); } /** *

The ID of the task runner. This value should be unique across your AWS * account. In the case of AWS Data Pipeline Task Runner launched on a resource * managed by AWS Data Pipeline, the web service provides a unique identifier when * it launches the application. If you have written a custom task runner, you * should assign a unique identifier for the task runner.

*/ inline void SetTaskrunnerId(const char* value) { m_taskrunnerIdHasBeenSet = true; m_taskrunnerId.assign(value); } /** *

The ID of the task runner. This value should be unique across your AWS * account. In the case of AWS Data Pipeline Task Runner launched on a resource * managed by AWS Data Pipeline, the web service provides a unique identifier when * it launches the application. If you have written a custom task runner, you * should assign a unique identifier for the task runner.

*/ inline ReportTaskRunnerHeartbeatRequest& WithTaskrunnerId(const Aws::String& value) { SetTaskrunnerId(value); return *this;} /** *

The ID of the task runner. This value should be unique across your AWS * account. In the case of AWS Data Pipeline Task Runner launched on a resource * managed by AWS Data Pipeline, the web service provides a unique identifier when * it launches the application. If you have written a custom task runner, you * should assign a unique identifier for the task runner.

*/ inline ReportTaskRunnerHeartbeatRequest& WithTaskrunnerId(Aws::String&& value) { SetTaskrunnerId(std::move(value)); return *this;} /** *

The ID of the task runner. This value should be unique across your AWS * account. In the case of AWS Data Pipeline Task Runner launched on a resource * managed by AWS Data Pipeline, the web service provides a unique identifier when * it launches the application. If you have written a custom task runner, you * should assign a unique identifier for the task runner.

*/ inline ReportTaskRunnerHeartbeatRequest& WithTaskrunnerId(const char* value) { SetTaskrunnerId(value); return *this;} /** *

The type of task the task runner is configured to accept and process. The * worker group is set as a field on objects in the pipeline when they are created. * You can only specify a single value for workerGroup. There are no * wildcard values permitted in workerGroup; the string must be an * exact, case-sensitive, match.

*/ inline const Aws::String& GetWorkerGroup() const{ return m_workerGroup; } /** *

The type of task the task runner is configured to accept and process. The * worker group is set as a field on objects in the pipeline when they are created. * You can only specify a single value for workerGroup. There are no * wildcard values permitted in workerGroup; the string must be an * exact, case-sensitive, match.

*/ inline bool WorkerGroupHasBeenSet() const { return m_workerGroupHasBeenSet; } /** *

The type of task the task runner is configured to accept and process. The * worker group is set as a field on objects in the pipeline when they are created. * You can only specify a single value for workerGroup. There are no * wildcard values permitted in workerGroup; the string must be an * exact, case-sensitive, match.

*/ inline void SetWorkerGroup(const Aws::String& value) { m_workerGroupHasBeenSet = true; m_workerGroup = value; } /** *

The type of task the task runner is configured to accept and process. The * worker group is set as a field on objects in the pipeline when they are created. * You can only specify a single value for workerGroup. There are no * wildcard values permitted in workerGroup; the string must be an * exact, case-sensitive, match.

*/ inline void SetWorkerGroup(Aws::String&& value) { m_workerGroupHasBeenSet = true; m_workerGroup = std::move(value); } /** *

The type of task the task runner is configured to accept and process. The * worker group is set as a field on objects in the pipeline when they are created. * You can only specify a single value for workerGroup. There are no * wildcard values permitted in workerGroup; the string must be an * exact, case-sensitive, match.

*/ inline void SetWorkerGroup(const char* value) { m_workerGroupHasBeenSet = true; m_workerGroup.assign(value); } /** *

The type of task the task runner is configured to accept and process. The * worker group is set as a field on objects in the pipeline when they are created. * You can only specify a single value for workerGroup. There are no * wildcard values permitted in workerGroup; the string must be an * exact, case-sensitive, match.

*/ inline ReportTaskRunnerHeartbeatRequest& WithWorkerGroup(const Aws::String& value) { SetWorkerGroup(value); return *this;} /** *

The type of task the task runner is configured to accept and process. The * worker group is set as a field on objects in the pipeline when they are created. * You can only specify a single value for workerGroup. There are no * wildcard values permitted in workerGroup; the string must be an * exact, case-sensitive, match.

*/ inline ReportTaskRunnerHeartbeatRequest& WithWorkerGroup(Aws::String&& value) { SetWorkerGroup(std::move(value)); return *this;} /** *

The type of task the task runner is configured to accept and process. The * worker group is set as a field on objects in the pipeline when they are created. * You can only specify a single value for workerGroup. There are no * wildcard values permitted in workerGroup; the string must be an * exact, case-sensitive, match.

*/ inline ReportTaskRunnerHeartbeatRequest& WithWorkerGroup(const char* value) { SetWorkerGroup(value); return *this;} /** *

The public DNS name of the task runner.

*/ inline const Aws::String& GetHostname() const{ return m_hostname; } /** *

The public DNS name of the task runner.

*/ inline bool HostnameHasBeenSet() const { return m_hostnameHasBeenSet; } /** *

The public DNS name of the task runner.

*/ inline void SetHostname(const Aws::String& value) { m_hostnameHasBeenSet = true; m_hostname = value; } /** *

The public DNS name of the task runner.

*/ inline void SetHostname(Aws::String&& value) { m_hostnameHasBeenSet = true; m_hostname = std::move(value); } /** *

The public DNS name of the task runner.

*/ inline void SetHostname(const char* value) { m_hostnameHasBeenSet = true; m_hostname.assign(value); } /** *

The public DNS name of the task runner.

*/ inline ReportTaskRunnerHeartbeatRequest& WithHostname(const Aws::String& value) { SetHostname(value); return *this;} /** *

The public DNS name of the task runner.

*/ inline ReportTaskRunnerHeartbeatRequest& WithHostname(Aws::String&& value) { SetHostname(std::move(value)); return *this;} /** *

The public DNS name of the task runner.

*/ inline ReportTaskRunnerHeartbeatRequest& WithHostname(const char* value) { SetHostname(value); return *this;} private: Aws::String m_taskrunnerId; bool m_taskrunnerIdHasBeenSet = false; Aws::String m_workerGroup; bool m_workerGroupHasBeenSet = false; Aws::String m_hostname; bool m_hostnameHasBeenSet = false; }; } // namespace Model } // namespace DataPipeline } // namespace Aws