/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies a CloudWatch Logs location where chat logs will be
* stored.See Also:
AWS
* API Reference
Name of the Amazon Cloudwatch Logs destination where chat activity will be * logged.
*/ inline const Aws::String& GetLogGroupName() const{ return m_logGroupName; } /** *Name of the Amazon Cloudwatch Logs destination where chat activity will be * logged.
*/ inline bool LogGroupNameHasBeenSet() const { return m_logGroupNameHasBeenSet; } /** *Name of the Amazon Cloudwatch Logs destination where chat activity will be * logged.
*/ inline void SetLogGroupName(const Aws::String& value) { m_logGroupNameHasBeenSet = true; m_logGroupName = value; } /** *Name of the Amazon Cloudwatch Logs destination where chat activity will be * logged.
*/ inline void SetLogGroupName(Aws::String&& value) { m_logGroupNameHasBeenSet = true; m_logGroupName = std::move(value); } /** *Name of the Amazon Cloudwatch Logs destination where chat activity will be * logged.
*/ inline void SetLogGroupName(const char* value) { m_logGroupNameHasBeenSet = true; m_logGroupName.assign(value); } /** *Name of the Amazon Cloudwatch Logs destination where chat activity will be * logged.
*/ inline CloudWatchLogsDestinationConfiguration& WithLogGroupName(const Aws::String& value) { SetLogGroupName(value); return *this;} /** *Name of the Amazon Cloudwatch Logs destination where chat activity will be * logged.
*/ inline CloudWatchLogsDestinationConfiguration& WithLogGroupName(Aws::String&& value) { SetLogGroupName(std::move(value)); return *this;} /** *Name of the Amazon Cloudwatch Logs destination where chat activity will be * logged.
*/ inline CloudWatchLogsDestinationConfiguration& WithLogGroupName(const char* value) { SetLogGroupName(value); return *this;} private: Aws::String m_logGroupName; bool m_logGroupNameHasBeenSet = false; }; } // namespace Model } // namespace ivschat } // namespace Aws