/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that represents logging information.See Also:
AWS
* API Reference
The access log configuration.
*/ inline const VirtualGatewayAccessLog& GetAccessLog() const{ return m_accessLog; } /** *The access log configuration.
*/ inline bool AccessLogHasBeenSet() const { return m_accessLogHasBeenSet; } /** *The access log configuration.
*/ inline void SetAccessLog(const VirtualGatewayAccessLog& value) { m_accessLogHasBeenSet = true; m_accessLog = value; } /** *The access log configuration.
*/ inline void SetAccessLog(VirtualGatewayAccessLog&& value) { m_accessLogHasBeenSet = true; m_accessLog = std::move(value); } /** *The access log configuration.
*/ inline VirtualGatewayLogging& WithAccessLog(const VirtualGatewayAccessLog& value) { SetAccessLog(value); return *this;} /** *The access log configuration.
*/ inline VirtualGatewayLogging& WithAccessLog(VirtualGatewayAccessLog&& value) { SetAccessLog(std::move(value)); return *this;} private: VirtualGatewayAccessLog m_accessLog; bool m_accessLogHasBeenSet = false; }; } // namespace Model } // namespace AppMesh } // namespace Aws