/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Options for logging VPN tunnel activity.See Also:
AWS
* API Reference
Options for sending VPN tunnel logs to CloudWatch.
*/ inline const CloudWatchLogOptions& GetCloudWatchLogOptions() const{ return m_cloudWatchLogOptions; } /** *Options for sending VPN tunnel logs to CloudWatch.
*/ inline bool CloudWatchLogOptionsHasBeenSet() const { return m_cloudWatchLogOptionsHasBeenSet; } /** *Options for sending VPN tunnel logs to CloudWatch.
*/ inline void SetCloudWatchLogOptions(const CloudWatchLogOptions& value) { m_cloudWatchLogOptionsHasBeenSet = true; m_cloudWatchLogOptions = value; } /** *Options for sending VPN tunnel logs to CloudWatch.
*/ inline void SetCloudWatchLogOptions(CloudWatchLogOptions&& value) { m_cloudWatchLogOptionsHasBeenSet = true; m_cloudWatchLogOptions = std::move(value); } /** *Options for sending VPN tunnel logs to CloudWatch.
*/ inline VpnTunnelLogOptions& WithCloudWatchLogOptions(const CloudWatchLogOptions& value) { SetCloudWatchLogOptions(value); return *this;} /** *Options for sending VPN tunnel logs to CloudWatch.
*/ inline VpnTunnelLogOptions& WithCloudWatchLogOptions(CloudWatchLogOptions&& value) { SetCloudWatchLogOptions(std::move(value)); return *this;} private: CloudWatchLogOptions m_cloudWatchLogOptions; bool m_cloudWatchLogOptionsHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws