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,90 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/neptune/Neptune_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace Neptune
{
namespace Model
{
/**
* <p>A time zone associated with a <a>DBInstance</a>.</p><p><h3>See Also:</h3>
* <a href="http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/Timezone">AWS
* API Reference</a></p>
*/
class AWS_NEPTUNE_API Timezone
{
public:
Timezone();
Timezone(const Aws::Utils::Xml::XmlNode& xmlNode);
Timezone& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
void OutputToStream(Aws::OStream& oStream, const char* location) const;
/**
* <p>The name of the time zone.</p>
*/
inline const Aws::String& GetTimezoneName() const{ return m_timezoneName; }
/**
* <p>The name of the time zone.</p>
*/
inline bool TimezoneNameHasBeenSet() const { return m_timezoneNameHasBeenSet; }
/**
* <p>The name of the time zone.</p>
*/
inline void SetTimezoneName(const Aws::String& value) { m_timezoneNameHasBeenSet = true; m_timezoneName = value; }
/**
* <p>The name of the time zone.</p>
*/
inline void SetTimezoneName(Aws::String&& value) { m_timezoneNameHasBeenSet = true; m_timezoneName = std::move(value); }
/**
* <p>The name of the time zone.</p>
*/
inline void SetTimezoneName(const char* value) { m_timezoneNameHasBeenSet = true; m_timezoneName.assign(value); }
/**
* <p>The name of the time zone.</p>
*/
inline Timezone& WithTimezoneName(const Aws::String& value) { SetTimezoneName(value); return *this;}
/**
* <p>The name of the time zone.</p>
*/
inline Timezone& WithTimezoneName(Aws::String&& value) { SetTimezoneName(std::move(value)); return *this;}
/**
* <p>The name of the time zone.</p>
*/
inline Timezone& WithTimezoneName(const char* value) { SetTimezoneName(value); return *this;}
private:
Aws::String m_timezoneName;
bool m_timezoneNameHasBeenSet;
};
} // namespace Model
} // namespace Neptune
} // namespace Aws