/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about your account's integration with Amazon CodeGuru Profiler.
* This returns whether DevOps Guru is configured to consume recommendations
* generated from Amazon CodeGuru Profiler.See Also:
AWS
* API Reference
The status of the CodeGuru Profiler integration. Specifies if DevOps Guru is * enabled to consume recommendations that are generated from Amazon CodeGuru * Profiler.
*/ inline const EventSourceOptInStatus& GetStatus() const{ return m_status; } /** *The status of the CodeGuru Profiler integration. Specifies if DevOps Guru is * enabled to consume recommendations that are generated from Amazon CodeGuru * Profiler.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *The status of the CodeGuru Profiler integration. Specifies if DevOps Guru is * enabled to consume recommendations that are generated from Amazon CodeGuru * Profiler.
*/ inline void SetStatus(const EventSourceOptInStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *The status of the CodeGuru Profiler integration. Specifies if DevOps Guru is * enabled to consume recommendations that are generated from Amazon CodeGuru * Profiler.
*/ inline void SetStatus(EventSourceOptInStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *The status of the CodeGuru Profiler integration. Specifies if DevOps Guru is * enabled to consume recommendations that are generated from Amazon CodeGuru * Profiler.
*/ inline AmazonCodeGuruProfilerIntegration& WithStatus(const EventSourceOptInStatus& value) { SetStatus(value); return *this;} /** *The status of the CodeGuru Profiler integration. Specifies if DevOps Guru is * enabled to consume recommendations that are generated from Amazon CodeGuru * Profiler.
*/ inline AmazonCodeGuruProfilerIntegration& WithStatus(EventSourceOptInStatus&& value) { SetStatus(std::move(value)); return *this;} private: EventSourceOptInStatus m_status; bool m_statusHasBeenSet = false; }; } // namespace Model } // namespace DevOpsGuru } // namespace Aws