/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about updating the integration status of an Amazon Web Services
* service, such as Amazon Web Services Systems Manager, with DevOps Guru.
* See Also:
AWS
* API Reference
Information about whether DevOps Guru is configured to perform log anomaly * detection on Amazon CloudWatch log groups.
*/ inline const LogsAnomalyDetectionIntegrationConfig& GetLogsAnomalyDetection() const{ return m_logsAnomalyDetection; } /** *Information about whether DevOps Guru is configured to perform log anomaly * detection on Amazon CloudWatch log groups.
*/ inline bool LogsAnomalyDetectionHasBeenSet() const { return m_logsAnomalyDetectionHasBeenSet; } /** *Information about whether DevOps Guru is configured to perform log anomaly * detection on Amazon CloudWatch log groups.
*/ inline void SetLogsAnomalyDetection(const LogsAnomalyDetectionIntegrationConfig& value) { m_logsAnomalyDetectionHasBeenSet = true; m_logsAnomalyDetection = value; } /** *Information about whether DevOps Guru is configured to perform log anomaly * detection on Amazon CloudWatch log groups.
*/ inline void SetLogsAnomalyDetection(LogsAnomalyDetectionIntegrationConfig&& value) { m_logsAnomalyDetectionHasBeenSet = true; m_logsAnomalyDetection = std::move(value); } /** *Information about whether DevOps Guru is configured to perform log anomaly * detection on Amazon CloudWatch log groups.
*/ inline UpdateServiceIntegrationConfig& WithLogsAnomalyDetection(const LogsAnomalyDetectionIntegrationConfig& value) { SetLogsAnomalyDetection(value); return *this;} /** *Information about whether DevOps Guru is configured to perform log anomaly * detection on Amazon CloudWatch log groups.
*/ inline UpdateServiceIntegrationConfig& WithLogsAnomalyDetection(LogsAnomalyDetectionIntegrationConfig&& value) { SetLogsAnomalyDetection(std::move(value)); return *this;} /** *Information about whether DevOps Guru is configured to encrypt server-side * data using KMS.
*/ inline const KMSServerSideEncryptionIntegrationConfig& GetKMSServerSideEncryption() const{ return m_kMSServerSideEncryption; } /** *Information about whether DevOps Guru is configured to encrypt server-side * data using KMS.
*/ inline bool KMSServerSideEncryptionHasBeenSet() const { return m_kMSServerSideEncryptionHasBeenSet; } /** *Information about whether DevOps Guru is configured to encrypt server-side * data using KMS.
*/ inline void SetKMSServerSideEncryption(const KMSServerSideEncryptionIntegrationConfig& value) { m_kMSServerSideEncryptionHasBeenSet = true; m_kMSServerSideEncryption = value; } /** *Information about whether DevOps Guru is configured to encrypt server-side * data using KMS.
*/ inline void SetKMSServerSideEncryption(KMSServerSideEncryptionIntegrationConfig&& value) { m_kMSServerSideEncryptionHasBeenSet = true; m_kMSServerSideEncryption = std::move(value); } /** *Information about whether DevOps Guru is configured to encrypt server-side * data using KMS.
*/ inline UpdateServiceIntegrationConfig& WithKMSServerSideEncryption(const KMSServerSideEncryptionIntegrationConfig& value) { SetKMSServerSideEncryption(value); return *this;} /** *Information about whether DevOps Guru is configured to encrypt server-side * data using KMS.
*/ inline UpdateServiceIntegrationConfig& WithKMSServerSideEncryption(KMSServerSideEncryptionIntegrationConfig&& value) { SetKMSServerSideEncryption(std::move(value)); return *this;} private: OpsCenterIntegrationConfig m_opsCenter; bool m_opsCenterHasBeenSet = false; LogsAnomalyDetectionIntegrationConfig m_logsAnomalyDetection; bool m_logsAnomalyDetectionHasBeenSet = false; KMSServerSideEncryptionIntegrationConfig m_kMSServerSideEncryption; bool m_kMSServerSideEncryptionHasBeenSet = false; }; } // namespace Model } // namespace DevOpsGuru } // namespace Aws