/** * 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 Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace IoTWireless { namespace Model { /** *

UpdateWirelessGatewayTaskCreate object.

See Also:

AWS * API Reference

*/ class UpdateWirelessGatewayTaskCreate { public: AWS_IOTWIRELESS_API UpdateWirelessGatewayTaskCreate(); AWS_IOTWIRELESS_API UpdateWirelessGatewayTaskCreate(Aws::Utils::Json::JsonView jsonValue); AWS_IOTWIRELESS_API UpdateWirelessGatewayTaskCreate& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_IOTWIRELESS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The link to the S3 bucket.

*/ inline const Aws::String& GetUpdateDataSource() const{ return m_updateDataSource; } /** *

The link to the S3 bucket.

*/ inline bool UpdateDataSourceHasBeenSet() const { return m_updateDataSourceHasBeenSet; } /** *

The link to the S3 bucket.

*/ inline void SetUpdateDataSource(const Aws::String& value) { m_updateDataSourceHasBeenSet = true; m_updateDataSource = value; } /** *

The link to the S3 bucket.

*/ inline void SetUpdateDataSource(Aws::String&& value) { m_updateDataSourceHasBeenSet = true; m_updateDataSource = std::move(value); } /** *

The link to the S3 bucket.

*/ inline void SetUpdateDataSource(const char* value) { m_updateDataSourceHasBeenSet = true; m_updateDataSource.assign(value); } /** *

The link to the S3 bucket.

*/ inline UpdateWirelessGatewayTaskCreate& WithUpdateDataSource(const Aws::String& value) { SetUpdateDataSource(value); return *this;} /** *

The link to the S3 bucket.

*/ inline UpdateWirelessGatewayTaskCreate& WithUpdateDataSource(Aws::String&& value) { SetUpdateDataSource(std::move(value)); return *this;} /** *

The link to the S3 bucket.

*/ inline UpdateWirelessGatewayTaskCreate& WithUpdateDataSource(const char* value) { SetUpdateDataSource(value); return *this;} /** *

The IAM role used to read data from the S3 bucket.

*/ inline const Aws::String& GetUpdateDataRole() const{ return m_updateDataRole; } /** *

The IAM role used to read data from the S3 bucket.

*/ inline bool UpdateDataRoleHasBeenSet() const { return m_updateDataRoleHasBeenSet; } /** *

The IAM role used to read data from the S3 bucket.

*/ inline void SetUpdateDataRole(const Aws::String& value) { m_updateDataRoleHasBeenSet = true; m_updateDataRole = value; } /** *

The IAM role used to read data from the S3 bucket.

*/ inline void SetUpdateDataRole(Aws::String&& value) { m_updateDataRoleHasBeenSet = true; m_updateDataRole = std::move(value); } /** *

The IAM role used to read data from the S3 bucket.

*/ inline void SetUpdateDataRole(const char* value) { m_updateDataRoleHasBeenSet = true; m_updateDataRole.assign(value); } /** *

The IAM role used to read data from the S3 bucket.

*/ inline UpdateWirelessGatewayTaskCreate& WithUpdateDataRole(const Aws::String& value) { SetUpdateDataRole(value); return *this;} /** *

The IAM role used to read data from the S3 bucket.

*/ inline UpdateWirelessGatewayTaskCreate& WithUpdateDataRole(Aws::String&& value) { SetUpdateDataRole(std::move(value)); return *this;} /** *

The IAM role used to read data from the S3 bucket.

*/ inline UpdateWirelessGatewayTaskCreate& WithUpdateDataRole(const char* value) { SetUpdateDataRole(value); return *this;} /** *

The properties that relate to the LoRaWAN wireless gateway.

*/ inline const LoRaWANUpdateGatewayTaskCreate& GetLoRaWAN() const{ return m_loRaWAN; } /** *

The properties that relate to the LoRaWAN wireless gateway.

*/ inline bool LoRaWANHasBeenSet() const { return m_loRaWANHasBeenSet; } /** *

The properties that relate to the LoRaWAN wireless gateway.

*/ inline void SetLoRaWAN(const LoRaWANUpdateGatewayTaskCreate& value) { m_loRaWANHasBeenSet = true; m_loRaWAN = value; } /** *

The properties that relate to the LoRaWAN wireless gateway.

*/ inline void SetLoRaWAN(LoRaWANUpdateGatewayTaskCreate&& value) { m_loRaWANHasBeenSet = true; m_loRaWAN = std::move(value); } /** *

The properties that relate to the LoRaWAN wireless gateway.

*/ inline UpdateWirelessGatewayTaskCreate& WithLoRaWAN(const LoRaWANUpdateGatewayTaskCreate& value) { SetLoRaWAN(value); return *this;} /** *

The properties that relate to the LoRaWAN wireless gateway.

*/ inline UpdateWirelessGatewayTaskCreate& WithLoRaWAN(LoRaWANUpdateGatewayTaskCreate&& value) { SetLoRaWAN(std::move(value)); return *this;} private: Aws::String m_updateDataSource; bool m_updateDataSourceHasBeenSet = false; Aws::String m_updateDataRole; bool m_updateDataRoleHasBeenSet = false; LoRaWANUpdateGatewayTaskCreate m_loRaWAN; bool m_loRaWANHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws