/** * 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 CodeGuruProfiler { namespace Model { /** *

The structure representing the * GetNotificationConfigurationResponse.

See Also:

AWS * API Reference

*/ class AWS_CODEGURUPROFILER_API GetNotificationConfigurationResult { public: GetNotificationConfigurationResult(); GetNotificationConfigurationResult(const Aws::AmazonWebServiceResult& result); GetNotificationConfigurationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The current notification configuration for this profiling group.

*/ inline const NotificationConfiguration& GetNotificationConfiguration() const{ return m_notificationConfiguration; } /** *

The current notification configuration for this profiling group.

*/ inline void SetNotificationConfiguration(const NotificationConfiguration& value) { m_notificationConfiguration = value; } /** *

The current notification configuration for this profiling group.

*/ inline void SetNotificationConfiguration(NotificationConfiguration&& value) { m_notificationConfiguration = std::move(value); } /** *

The current notification configuration for this profiling group.

*/ inline GetNotificationConfigurationResult& WithNotificationConfiguration(const NotificationConfiguration& value) { SetNotificationConfiguration(value); return *this;} /** *

The current notification configuration for this profiling group.

*/ inline GetNotificationConfigurationResult& WithNotificationConfiguration(NotificationConfiguration&& value) { SetNotificationConfiguration(std::move(value)); return *this;} private: NotificationConfiguration m_notificationConfiguration; }; } // namespace Model } // namespace CodeGuruProfiler } // namespace Aws