/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A structure that contains information about whether this app monitor stores a
* copy of the telemetry data that RUM collects using CloudWatch
* Logs.See Also:
AWS API
* Reference
A structure that contains the information about whether the app monitor * stores copies of the data that RUM collects in CloudWatch Logs. If it does, this * structure also contains the name of the log group.
*/ inline const CwLog& GetCwLog() const{ return m_cwLog; } /** *A structure that contains the information about whether the app monitor * stores copies of the data that RUM collects in CloudWatch Logs. If it does, this * structure also contains the name of the log group.
*/ inline bool CwLogHasBeenSet() const { return m_cwLogHasBeenSet; } /** *A structure that contains the information about whether the app monitor * stores copies of the data that RUM collects in CloudWatch Logs. If it does, this * structure also contains the name of the log group.
*/ inline void SetCwLog(const CwLog& value) { m_cwLogHasBeenSet = true; m_cwLog = value; } /** *A structure that contains the information about whether the app monitor * stores copies of the data that RUM collects in CloudWatch Logs. If it does, this * structure also contains the name of the log group.
*/ inline void SetCwLog(CwLog&& value) { m_cwLogHasBeenSet = true; m_cwLog = std::move(value); } /** *A structure that contains the information about whether the app monitor * stores copies of the data that RUM collects in CloudWatch Logs. If it does, this * structure also contains the name of the log group.
*/ inline DataStorage& WithCwLog(const CwLog& value) { SetCwLog(value); return *this;} /** *A structure that contains the information about whether the app monitor * stores copies of the data that RUM collects in CloudWatch Logs. If it does, this * structure also contains the name of the log group.
*/ inline DataStorage& WithCwLog(CwLog&& value) { SetCwLog(std::move(value)); return *this;} private: CwLog m_cwLog; bool m_cwLogHasBeenSet = false; }; } // namespace Model } // namespace CloudWatchRUM } // namespace Aws