/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A job's configuration.See Also:
AWS
* API Reference
A configuration for an over-the-air (OTA) upgrade. Required for OTA jobs.
*/ inline const OTAJobConfig& GetOTAJobConfig() const{ return m_oTAJobConfig; } /** *A configuration for an over-the-air (OTA) upgrade. Required for OTA jobs.
*/ inline bool OTAJobConfigHasBeenSet() const { return m_oTAJobConfigHasBeenSet; } /** *A configuration for an over-the-air (OTA) upgrade. Required for OTA jobs.
*/ inline void SetOTAJobConfig(const OTAJobConfig& value) { m_oTAJobConfigHasBeenSet = true; m_oTAJobConfig = value; } /** *A configuration for an over-the-air (OTA) upgrade. Required for OTA jobs.
*/ inline void SetOTAJobConfig(OTAJobConfig&& value) { m_oTAJobConfigHasBeenSet = true; m_oTAJobConfig = std::move(value); } /** *A configuration for an over-the-air (OTA) upgrade. Required for OTA jobs.
*/ inline DeviceJobConfig& WithOTAJobConfig(const OTAJobConfig& value) { SetOTAJobConfig(value); return *this;} /** *A configuration for an over-the-air (OTA) upgrade. Required for OTA jobs.
*/ inline DeviceJobConfig& WithOTAJobConfig(OTAJobConfig&& value) { SetOTAJobConfig(std::move(value)); return *this;} private: OTAJobConfig m_oTAJobConfig; bool m_oTAJobConfigHasBeenSet = false; }; } // namespace Model } // namespace Panorama } // namespace Aws