/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Sidewalk object information for updating an import task.See
* Also:
AWS
* API Reference
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