/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace IoTWireless { namespace Model { /** *

Sidewalk object information for updating an import task.

See * Also:

AWS * API Reference

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

The CSV file contained in an S3 bucket that's used for appending devices to * an existing import task.

*/ inline const Aws::String& GetDeviceCreationFile() const{ return m_deviceCreationFile; } /** *

The CSV file contained in an S3 bucket that's used for appending devices to * an existing import task.

*/ inline bool DeviceCreationFileHasBeenSet() const { return m_deviceCreationFileHasBeenSet; } /** *

The CSV file contained in an S3 bucket that's used for appending devices to * an existing import task.

*/ inline void SetDeviceCreationFile(const Aws::String& value) { m_deviceCreationFileHasBeenSet = true; m_deviceCreationFile = value; } /** *

The CSV file contained in an S3 bucket that's used for appending devices to * an existing import task.

*/ inline void SetDeviceCreationFile(Aws::String&& value) { m_deviceCreationFileHasBeenSet = true; m_deviceCreationFile = std::move(value); } /** *

The CSV file contained in an S3 bucket that's used for appending devices to * an existing import task.

*/ inline void SetDeviceCreationFile(const char* value) { m_deviceCreationFileHasBeenSet = true; m_deviceCreationFile.assign(value); } /** *

The CSV file contained in an S3 bucket that's used for appending devices to * an existing import task.

*/ inline SidewalkUpdateImportInfo& WithDeviceCreationFile(const Aws::String& value) { SetDeviceCreationFile(value); return *this;} /** *

The CSV file contained in an S3 bucket that's used for appending devices to * an existing import task.

*/ inline SidewalkUpdateImportInfo& WithDeviceCreationFile(Aws::String&& value) { SetDeviceCreationFile(std::move(value)); return *this;} /** *

The CSV file contained in an S3 bucket that's used for appending devices to * an existing import task.

*/ inline SidewalkUpdateImportInfo& WithDeviceCreationFile(const char* value) { SetDeviceCreationFile(value); return *this;} private: Aws::String m_deviceCreationFile; bool m_deviceCreationFileHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws