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

The recommended configuration settings of the component. The value is the * escaped JSON of the configuration.

*/ inline const Aws::String& GetComponentConfiguration() const{ return m_componentConfiguration; } /** *

The recommended configuration settings of the component. The value is the * escaped JSON of the configuration.

*/ inline void SetComponentConfiguration(const Aws::String& value) { m_componentConfiguration = value; } /** *

The recommended configuration settings of the component. The value is the * escaped JSON of the configuration.

*/ inline void SetComponentConfiguration(Aws::String&& value) { m_componentConfiguration = std::move(value); } /** *

The recommended configuration settings of the component. The value is the * escaped JSON of the configuration.

*/ inline void SetComponentConfiguration(const char* value) { m_componentConfiguration.assign(value); } /** *

The recommended configuration settings of the component. The value is the * escaped JSON of the configuration.

*/ inline DescribeComponentConfigurationRecommendationResult& WithComponentConfiguration(const Aws::String& value) { SetComponentConfiguration(value); return *this;} /** *

The recommended configuration settings of the component. The value is the * escaped JSON of the configuration.

*/ inline DescribeComponentConfigurationRecommendationResult& WithComponentConfiguration(Aws::String&& value) { SetComponentConfiguration(std::move(value)); return *this;} /** *

The recommended configuration settings of the component. The value is the * escaped JSON of the configuration.

*/ inline DescribeComponentConfigurationRecommendationResult& WithComponentConfiguration(const char* value) { SetComponentConfiguration(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeComponentConfigurationRecommendationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeComponentConfigurationRecommendationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeComponentConfigurationRecommendationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_componentConfiguration; Aws::String m_requestId; }; } // namespace Model } // namespace ApplicationInsights } // namespace Aws