/** * 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 DescribeComponentConfigurationRecommendationResult { public: DescribeComponentConfigurationRecommendationResult(); DescribeComponentConfigurationRecommendationResult(const Aws::AmazonWebServiceResult& result); 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;} private: Aws::String m_componentConfiguration; }; } // namespace Model } // namespace ApplicationInsights } // namespace Aws