This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-appmesh/include/aws/appmesh/model/VirtualGatewayFileAccessLog.h

161 lines
5.5 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/appmesh/AppMesh_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace AppMesh
{
namespace Model
{
/**
* <p>An object that represents an access log file.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/VirtualGatewayFileAccessLog">AWS
* API Reference</a></p>
*/
class AWS_APPMESH_API VirtualGatewayFileAccessLog
{
public:
VirtualGatewayFileAccessLog();
VirtualGatewayFileAccessLog(Aws::Utils::Json::JsonView jsonValue);
VirtualGatewayFileAccessLog& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The file path to write access logs to. You can use <code>/dev/stdout</code>
* to send
access logs to standard out and configure your Envoy container
* to use a log driver, such as
<code>awslogs</code>, to export the
* access logs to a log storage service such as Amazon
CloudWatch Logs.
* You can also specify a path in the Envoy container's file system to write
* the files to disk.</p>
*/
inline const Aws::String& GetPath() const{ return m_path; }
/**
* <p>The file path to write access logs to. You can use <code>/dev/stdout</code>
* to send
access logs to standard out and configure your Envoy container
* to use a log driver, such as
<code>awslogs</code>, to export the
* access logs to a log storage service such as Amazon
CloudWatch Logs.
* You can also specify a path in the Envoy container's file system to write
* the files to disk.</p>
*/
inline bool PathHasBeenSet() const { return m_pathHasBeenSet; }
/**
* <p>The file path to write access logs to. You can use <code>/dev/stdout</code>
* to send
access logs to standard out and configure your Envoy container
* to use a log driver, such as
<code>awslogs</code>, to export the
* access logs to a log storage service such as Amazon
CloudWatch Logs.
* You can also specify a path in the Envoy container's file system to write
* the files to disk.</p>
*/
inline void SetPath(const Aws::String& value) { m_pathHasBeenSet = true; m_path = value; }
/**
* <p>The file path to write access logs to. You can use <code>/dev/stdout</code>
* to send
access logs to standard out and configure your Envoy container
* to use a log driver, such as
<code>awslogs</code>, to export the
* access logs to a log storage service such as Amazon
CloudWatch Logs.
* You can also specify a path in the Envoy container's file system to write
* the files to disk.</p>
*/
inline void SetPath(Aws::String&& value) { m_pathHasBeenSet = true; m_path = std::move(value); }
/**
* <p>The file path to write access logs to. You can use <code>/dev/stdout</code>
* to send
access logs to standard out and configure your Envoy container
* to use a log driver, such as
<code>awslogs</code>, to export the
* access logs to a log storage service such as Amazon
CloudWatch Logs.
* You can also specify a path in the Envoy container's file system to write
* the files to disk.</p>
*/
inline void SetPath(const char* value) { m_pathHasBeenSet = true; m_path.assign(value); }
/**
* <p>The file path to write access logs to. You can use <code>/dev/stdout</code>
* to send
access logs to standard out and configure your Envoy container
* to use a log driver, such as
<code>awslogs</code>, to export the
* access logs to a log storage service such as Amazon
CloudWatch Logs.
* You can also specify a path in the Envoy container's file system to write
* the files to disk.</p>
*/
inline VirtualGatewayFileAccessLog& WithPath(const Aws::String& value) { SetPath(value); return *this;}
/**
* <p>The file path to write access logs to. You can use <code>/dev/stdout</code>
* to send
access logs to standard out and configure your Envoy container
* to use a log driver, such as
<code>awslogs</code>, to export the
* access logs to a log storage service such as Amazon
CloudWatch Logs.
* You can also specify a path in the Envoy container's file system to write
* the files to disk.</p>
*/
inline VirtualGatewayFileAccessLog& WithPath(Aws::String&& value) { SetPath(std::move(value)); return *this;}
/**
* <p>The file path to write access logs to. You can use <code>/dev/stdout</code>
* to send
access logs to standard out and configure your Envoy container
* to use a log driver, such as
<code>awslogs</code>, to export the
* access logs to a log storage service such as Amazon
CloudWatch Logs.
* You can also specify a path in the Envoy container's file system to write
* the files to disk.</p>
*/
inline VirtualGatewayFileAccessLog& WithPath(const char* value) { SetPath(value); return *this;}
private:
Aws::String m_path;
bool m_pathHasBeenSet;
};
} // namespace Model
} // namespace AppMesh
} // namespace Aws