/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the configuration information of a job, such as the file format used
* to save data in Amazon S3.See Also:
AWS
* API Reference
The file format of the data in Amazon S3.
*/ inline const FileFormat& GetFileFormat() const{ return m_fileFormat; } /** *The file format of the data in Amazon S3.
*/ inline bool FileFormatHasBeenSet() const { return m_fileFormatHasBeenSet; } /** *The file format of the data in Amazon S3.
*/ inline void SetFileFormat(const FileFormat& value) { m_fileFormatHasBeenSet = true; m_fileFormat = value; } /** *The file format of the data in Amazon S3.
*/ inline void SetFileFormat(FileFormat&& value) { m_fileFormatHasBeenSet = true; m_fileFormat = std::move(value); } /** *The file format of the data in Amazon S3.
*/ inline JobConfiguration& WithFileFormat(const FileFormat& value) { SetFileFormat(value); return *this;} /** *The file format of the data in Amazon S3.
*/ inline JobConfiguration& WithFileFormat(FileFormat&& value) { SetFileFormat(std::move(value)); return *this;} private: FileFormat m_fileFormat; bool m_fileFormatHasBeenSet = false; }; } // namespace Model } // namespace IoTSiteWise } // namespace Aws