/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ApplicationInsights { namespace Model { class AWS_APPLICATIONINSIGHTS_API DescribeObservationResult { public: DescribeObservationResult(); DescribeObservationResult(const Aws::AmazonWebServiceResult& result); DescribeObservationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the observation.

*/ inline const Observation& GetObservation() const{ return m_observation; } /** *

Information about the observation.

*/ inline void SetObservation(const Observation& value) { m_observation = value; } /** *

Information about the observation.

*/ inline void SetObservation(Observation&& value) { m_observation = std::move(value); } /** *

Information about the observation.

*/ inline DescribeObservationResult& WithObservation(const Observation& value) { SetObservation(value); return *this;} /** *

Information about the observation.

*/ inline DescribeObservationResult& WithObservation(Observation&& value) { SetObservation(std::move(value)); return *this;} private: Observation m_observation; }; } // namespace Model } // namespace ApplicationInsights } // namespace Aws