/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains an asset measurement property. For more information, see Measurements
* in the IoT SiteWise User Guide.See Also:
AWS
* API Reference
The processing configuration for the given measurement property. You can * configure measurements to be kept at the edge or forwarded to the Amazon Web * Services Cloud. By default, measurements are forwarded to the cloud.
*/ inline const MeasurementProcessingConfig& GetProcessingConfig() const{ return m_processingConfig; } /** *The processing configuration for the given measurement property. You can * configure measurements to be kept at the edge or forwarded to the Amazon Web * Services Cloud. By default, measurements are forwarded to the cloud.
*/ inline bool ProcessingConfigHasBeenSet() const { return m_processingConfigHasBeenSet; } /** *The processing configuration for the given measurement property. You can * configure measurements to be kept at the edge or forwarded to the Amazon Web * Services Cloud. By default, measurements are forwarded to the cloud.
*/ inline void SetProcessingConfig(const MeasurementProcessingConfig& value) { m_processingConfigHasBeenSet = true; m_processingConfig = value; } /** *The processing configuration for the given measurement property. You can * configure measurements to be kept at the edge or forwarded to the Amazon Web * Services Cloud. By default, measurements are forwarded to the cloud.
*/ inline void SetProcessingConfig(MeasurementProcessingConfig&& value) { m_processingConfigHasBeenSet = true; m_processingConfig = std::move(value); } /** *The processing configuration for the given measurement property. You can * configure measurements to be kept at the edge or forwarded to the Amazon Web * Services Cloud. By default, measurements are forwarded to the cloud.
*/ inline Measurement& WithProcessingConfig(const MeasurementProcessingConfig& value) { SetProcessingConfig(value); return *this;} /** *The processing configuration for the given measurement property. You can * configure measurements to be kept at the edge or forwarded to the Amazon Web * Services Cloud. By default, measurements are forwarded to the cloud.
*/ inline Measurement& WithProcessingConfig(MeasurementProcessingConfig&& value) { SetProcessingConfig(std::move(value)); return *this;} private: MeasurementProcessingConfig m_processingConfig; bool m_processingConfigHasBeenSet = false; }; } // namespace Model } // namespace IoTSiteWise } // namespace Aws