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,176 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/athena/Athena_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 Athena
{
namespace Model
{
/**
* <p>Contains metadata for a column in a table.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/Column">AWS API
* Reference</a></p>
*/
class AWS_ATHENA_API Column
{
public:
Column();
Column(Aws::Utils::Json::JsonView jsonValue);
Column& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The name of the column.</p>
*/
inline const Aws::String& GetName() const{ return m_name; }
/**
* <p>The name of the column.</p>
*/
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
/**
* <p>The name of the column.</p>
*/
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
/**
* <p>The name of the column.</p>
*/
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
/**
* <p>The name of the column.</p>
*/
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
/**
* <p>The name of the column.</p>
*/
inline Column& WithName(const Aws::String& value) { SetName(value); return *this;}
/**
* <p>The name of the column.</p>
*/
inline Column& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
/**
* <p>The name of the column.</p>
*/
inline Column& WithName(const char* value) { SetName(value); return *this;}
/**
* <p>The data type of the column.</p>
*/
inline const Aws::String& GetType() const{ return m_type; }
/**
* <p>The data type of the column.</p>
*/
inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
/**
* <p>The data type of the column.</p>
*/
inline void SetType(const Aws::String& value) { m_typeHasBeenSet = true; m_type = value; }
/**
* <p>The data type of the column.</p>
*/
inline void SetType(Aws::String&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
/**
* <p>The data type of the column.</p>
*/
inline void SetType(const char* value) { m_typeHasBeenSet = true; m_type.assign(value); }
/**
* <p>The data type of the column.</p>
*/
inline Column& WithType(const Aws::String& value) { SetType(value); return *this;}
/**
* <p>The data type of the column.</p>
*/
inline Column& WithType(Aws::String&& value) { SetType(std::move(value)); return *this;}
/**
* <p>The data type of the column.</p>
*/
inline Column& WithType(const char* value) { SetType(value); return *this;}
/**
* <p>Optional information about the column.</p>
*/
inline const Aws::String& GetComment() const{ return m_comment; }
/**
* <p>Optional information about the column.</p>
*/
inline bool CommentHasBeenSet() const { return m_commentHasBeenSet; }
/**
* <p>Optional information about the column.</p>
*/
inline void SetComment(const Aws::String& value) { m_commentHasBeenSet = true; m_comment = value; }
/**
* <p>Optional information about the column.</p>
*/
inline void SetComment(Aws::String&& value) { m_commentHasBeenSet = true; m_comment = std::move(value); }
/**
* <p>Optional information about the column.</p>
*/
inline void SetComment(const char* value) { m_commentHasBeenSet = true; m_comment.assign(value); }
/**
* <p>Optional information about the column.</p>
*/
inline Column& WithComment(const Aws::String& value) { SetComment(value); return *this;}
/**
* <p>Optional information about the column.</p>
*/
inline Column& WithComment(Aws::String&& value) { SetComment(std::move(value)); return *this;}
/**
* <p>Optional information about the column.</p>
*/
inline Column& WithComment(const char* value) { SetComment(value); return *this;}
private:
Aws::String m_name;
bool m_nameHasBeenSet;
Aws::String m_type;
bool m_typeHasBeenSet;
Aws::String m_comment;
bool m_commentHasBeenSet;
};
} // namespace Model
} // namespace Athena
} // namespace Aws