/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the parameters for ReportTaskRunnerHeartbeat.See
* Also:
AWS
* API Reference
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.
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.
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.
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.
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.
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.
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.
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.
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