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,156 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/quicksight/QuickSight_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 QuickSight
{
namespace Model
{
/**
* <p>MySQL parameters.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/MySqlParameters">AWS
* API Reference</a></p>
*/
class AWS_QUICKSIGHT_API MySqlParameters
{
public:
MySqlParameters();
MySqlParameters(Aws::Utils::Json::JsonView jsonValue);
MySqlParameters& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>Host.</p>
*/
inline const Aws::String& GetHost() const{ return m_host; }
/**
* <p>Host.</p>
*/
inline bool HostHasBeenSet() const { return m_hostHasBeenSet; }
/**
* <p>Host.</p>
*/
inline void SetHost(const Aws::String& value) { m_hostHasBeenSet = true; m_host = value; }
/**
* <p>Host.</p>
*/
inline void SetHost(Aws::String&& value) { m_hostHasBeenSet = true; m_host = std::move(value); }
/**
* <p>Host.</p>
*/
inline void SetHost(const char* value) { m_hostHasBeenSet = true; m_host.assign(value); }
/**
* <p>Host.</p>
*/
inline MySqlParameters& WithHost(const Aws::String& value) { SetHost(value); return *this;}
/**
* <p>Host.</p>
*/
inline MySqlParameters& WithHost(Aws::String&& value) { SetHost(std::move(value)); return *this;}
/**
* <p>Host.</p>
*/
inline MySqlParameters& WithHost(const char* value) { SetHost(value); return *this;}
/**
* <p>Port.</p>
*/
inline int GetPort() const{ return m_port; }
/**
* <p>Port.</p>
*/
inline bool PortHasBeenSet() const { return m_portHasBeenSet; }
/**
* <p>Port.</p>
*/
inline void SetPort(int value) { m_portHasBeenSet = true; m_port = value; }
/**
* <p>Port.</p>
*/
inline MySqlParameters& WithPort(int value) { SetPort(value); return *this;}
/**
* <p>Database.</p>
*/
inline const Aws::String& GetDatabase() const{ return m_database; }
/**
* <p>Database.</p>
*/
inline bool DatabaseHasBeenSet() const { return m_databaseHasBeenSet; }
/**
* <p>Database.</p>
*/
inline void SetDatabase(const Aws::String& value) { m_databaseHasBeenSet = true; m_database = value; }
/**
* <p>Database.</p>
*/
inline void SetDatabase(Aws::String&& value) { m_databaseHasBeenSet = true; m_database = std::move(value); }
/**
* <p>Database.</p>
*/
inline void SetDatabase(const char* value) { m_databaseHasBeenSet = true; m_database.assign(value); }
/**
* <p>Database.</p>
*/
inline MySqlParameters& WithDatabase(const Aws::String& value) { SetDatabase(value); return *this;}
/**
* <p>Database.</p>
*/
inline MySqlParameters& WithDatabase(Aws::String&& value) { SetDatabase(std::move(value)); return *this;}
/**
* <p>Database.</p>
*/
inline MySqlParameters& WithDatabase(const char* value) { SetDatabase(value); return *this;}
private:
Aws::String m_host;
bool m_hostHasBeenSet;
int m_port;
bool m_portHasBeenSet;
Aws::String m_database;
bool m_databaseHasBeenSet;
};
} // namespace Model
} // namespace QuickSight
} // namespace Aws