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

Information about the problem.

*/ inline const Problem& GetProblem() const{ return m_problem; } /** *

Information about the problem.

*/ inline void SetProblem(const Problem& value) { m_problem = value; } /** *

Information about the problem.

*/ inline void SetProblem(Problem&& value) { m_problem = std::move(value); } /** *

Information about the problem.

*/ inline DescribeProblemResult& WithProblem(const Problem& value) { SetProblem(value); return *this;} /** *

Information about the problem.

*/ inline DescribeProblemResult& WithProblem(Problem&& value) { SetProblem(std::move(value)); return *this;} private: Problem m_problem; }; } // namespace Model } // namespace ApplicationInsights } // namespace Aws