/** * 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 IoTSiteWise { namespace Model { /** *

Contains the configuration information of a job, such as the file format used * to save data in Amazon S3.

See Also:

AWS * API Reference

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

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