feat(hos_client_create, hos_client_destory): 多次调用destory不会导致重复释放

This commit is contained in:
彭宣正
2020-12-14 17:24:58 +08:00
parent 505d529c32
commit 10b370e486
55976 changed files with 8544395 additions and 2 deletions

View File

@@ -0,0 +1,208 @@
/**
* 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/FileAccessLog">AWS
* API Reference</a></p>
*/
class AWS_APPMESH_API FileAccessLog
{
public:
FileAccessLog();
FileAccessLog(Aws::Utils::Json::JsonView jsonValue);
FileAccessLog& 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>
<p>The Envoy process must
* have write permissions to the path that you specify here.
Otherwise,
* Envoy fails to bootstrap properly.</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>
<p>The Envoy process must
* have write permissions to the path that you specify here.
Otherwise,
* Envoy fails to bootstrap properly.</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>
<p>The Envoy process must
* have write permissions to the path that you specify here.
Otherwise,
* Envoy fails to bootstrap properly.</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>
<p>The Envoy process must
* have write permissions to the path that you specify here.
Otherwise,
* Envoy fails to bootstrap properly.</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>
<p>The Envoy process must
* have write permissions to the path that you specify here.
Otherwise,
* Envoy fails to bootstrap properly.</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>
<p>The Envoy process must
* have write permissions to the path that you specify here.
Otherwise,
* Envoy fails to bootstrap properly.</p>
*/
inline FileAccessLog& 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>
<p>The Envoy process must
* have write permissions to the path that you specify here.
Otherwise,
* Envoy fails to bootstrap properly.</p>
*/
inline FileAccessLog& 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>
<p>The Envoy process must
* have write permissions to the path that you specify here.
Otherwise,
* Envoy fails to bootstrap properly.</p>
*/
inline FileAccessLog& WithPath(const char* value) { SetPath(value); return *this;}
private:
Aws::String m_path;
bool m_pathHasBeenSet;
};
} // namespace Model
} // namespace AppMesh
} // namespace Aws