/** * 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 DescribeProblemObservationsResult { public: DescribeProblemObservationsResult(); DescribeProblemObservationsResult(const Aws::AmazonWebServiceResult& result); DescribeProblemObservationsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Observations related to the problem.

*/ inline const RelatedObservations& GetRelatedObservations() const{ return m_relatedObservations; } /** *

Observations related to the problem.

*/ inline void SetRelatedObservations(const RelatedObservations& value) { m_relatedObservations = value; } /** *

Observations related to the problem.

*/ inline void SetRelatedObservations(RelatedObservations&& value) { m_relatedObservations = std::move(value); } /** *

Observations related to the problem.

*/ inline DescribeProblemObservationsResult& WithRelatedObservations(const RelatedObservations& value) { SetRelatedObservations(value); return *this;} /** *

Observations related to the problem.

*/ inline DescribeProblemObservationsResult& WithRelatedObservations(RelatedObservations&& value) { SetRelatedObservations(std::move(value)); return *this;} private: RelatedObservations m_relatedObservations; }; } // namespace Model } // namespace ApplicationInsights } // namespace Aws